Skip to content

Commit

Permalink
MDL-66710 privacy: Update to template to reference js file right.
Browse files Browse the repository at this point in the history
  • Loading branch information
abgreeve committed Sep 19, 2019
1 parent 1c3efe4 commit f05c426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions privacy/templates/htmlpage.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@
"paths": {
"app": "./",
"jquery": "./js/jquery-3.4.1.min",
"tree": "./js/tree.min"
"core/tree": "./js/tree.min"
}
});
var tree;
require(['tree'], function(t) {
require(['core/tree'], function(t) {
var tree = new t('#my-tree');
tree.registerEnterCallback(function(item) {
var basenode = $(item[0].childNodes[0]);
Expand Down

0 comments on commit f05c426

Please sign in to comment.