Commit 01a388dfe9c1d0f1421abd741596567fea61af37

Authored by Amber Dev
1 parent 34a2a2609b

added intrack logo

src/pages/Common/UploadPdf.vue
... ... @@ -39,7 +39,7 @@ export default {
39 39 // Select the very first file from list
40 40 this.fileToLoad = selectedFile[0];
41 41 this.fileName = selectedFile[0].name;
42   - // console.log("file name - ", this.fileName);
  42 + console.log("file name - ", this.fileName);
43 43 // FileReader function for read the file.
44 44 var fileReader = new FileReader();
45 45 // Onload of file read the file content
... ...
src/pages/Course/courseDetail.vue
... ... @@ -728,7 +728,7 @@
728 728 <v-layout>
729 729 <v-flex xs12 sm12>
730 730 <v-layout class="right">
731   - <v-btn @click="clear;" round dark class="clear-button">Clear</v-btn>
  731 + <v-btn @click="clear();" round dark class="clear-button">Clear</v-btn>
732 732 <v-btn @click="submit" round dark :loading="loading" class="add-button">Add</v-btn>
733 733 </v-layout>
734 734 </v-flex>
... ...
src/pages/Dashboard/LiveOnlineClass.vue
... ... @@ -215,7 +215,7 @@ export default {
215 215 startConference() {
216 216 var _this = this;
217 217 try {
218   - const domain = "meet.jit.si";
  218 + const domain = "meet.intrack.in";
219 219 const options = {
220 220 audioInput: "<deviceLabel>",
221 221 audioOutput: "<deviceLabel>",
... ... @@ -298,8 +298,8 @@ export default {
298 298 // this.addSection = response.data.data;
299 299 console.log("CREATE___ROOOM", response.data);
300 300 this.room = response.data.data.LiveClasses.roomName;
301   - this.username = response.data.data.LiveClasses.teacherName;
302   - this.roomPassword = response.data.data.LiveClasses.roomPassword;
  301 + // this.username = response.data.data.LiveClasses.teacherName;
  302 + this.roomPassword = response.data.data.LiveClasses.password;
303 303 var this_ = this;
304 304 if (this.username != "" || this.room != "") {
305 305 if (window.JitsiMeetExternalAPI) {
... ... @@ -326,6 +326,8 @@ export default {
326 326 this.token = this.$store.state.token;
327 327 },
328 328 async created() {
  329 + console.log("local st - ",localStorage)
  330 +
329 331 /* getLiveClassesesList - To up date line under heading*/
330 332 let response = await this.getLiveClassesesList({
331 333 classId: this.$route.query.classId,
... ... @@ -334,7 +336,7 @@ export default {
334 336 });
335 337 console.log("response getLiveClassesesList- ", response);
336 338 if (response.data.data.length == 0) {
337   - console.log("response of - ", response);
  339 + console.log("response of - ", response);
338 340 this.startLiveSession = "Start live session";
339 341 }
340 342  
... ...