mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Avoided using jQuery when bootstrapping the page
This commit is contained in:
parent
53562aa506
commit
e046fd7cbf
@ -106,8 +106,9 @@ var App = function() {
|
||||
// Use the story navigator for all links
|
||||
navigators.install("a","StoryNavigator");
|
||||
// Open the PageTemplate
|
||||
var div = $("<div/>").html(this.store.renderTiddler("text/html","PageTemplate"));
|
||||
div.appendTo("body");
|
||||
var div = document.createElement("div");
|
||||
div.innerHTML = this.store.renderTiddler("text/html","PageTemplate");
|
||||
document.body.appendChild(div);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user