Skip to content

Commit

Permalink
fixed dom exception bug
Browse files Browse the repository at this point in the history
  • Loading branch information
madhavipuliraju committed Oct 5, 2017
1 parent 8dc6fa1 commit d266dbd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/runtime/index.org
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,9 @@ var loadAllDisciplines = function() {
deleteFrameInDivision("contentIframe", "contentDiv");
var newFrame = createNewIframe("contentIframe", "contentIframe", "100%", "850em");
insertFrameInDivision(newFrame, "contentDiv");
var disciplines = getAllDisciplines();
setContentInIframe(disciplines);
getAllDisciplines();
// var disciplines = getAllDisciplines();
// setContentInIframe(disciplines);
};

#+END_SRC
Expand All @@ -487,8 +488,9 @@ var loadAllInstitutes = function() {
deleteFrameInDivision("contentIframe", "contentDiv");
var newFrame = createNewIframe("contentIframe", "contentIframe", "100%", "650em");
insertFrameInDivision(newFrame, "contentDiv");
var institutes = getAllInstitutes();
setContentInIframe(institutes);
getAllInstitutes();
// var institutes = getAllInstitutes();
// setContentInIframe(institutes);
};

#+END_SRC
Expand Down

0 comments on commit d266dbd

Please sign in to comment.