Skip to content

Commit

Permalink
Make sure to include the Url utility
Browse files Browse the repository at this point in the history
  • Loading branch information
bago committed May 27, 2022
1 parent e4cebd6 commit c2d9710
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/js/app.js
Expand Up @@ -10,10 +10,6 @@ require("./ko-bindings.js");
var performanceAwareCaller = require("./timed-call.js").timedCall;

var addUndoStackExtensionMaker = require("./undomanager/undomain.js");
var colorPlugin = require("./ext/color.js");
var utilPlugin = require("./ext/util.js");
var urlPlugin = require("./ext/url.js");
var inlinerPlugin = require("./ext/inliner.js");

var localStorageLoader = require("./ext/localstorage.js");

Expand Down Expand Up @@ -130,9 +126,10 @@ var start = function(options, templateFile, templateMetadata, jsorjson, customEx
require("./widgets/src.js"),
require("./widgets/textarea.js"),
require("./widgets/url.js"),
colorPlugin,
utilPlugin,
inlinerPlugin
require("./ext/color.js"),
require("./ext/util.js"),
require("./ext/url.js"),
require("./ext/inliner.js")
];
if (typeof customExtensions !== 'undefined')
for (var k = 0; k < customExtensions.length; k++) extensions.push(customExtensions[k]);
Expand Down

0 comments on commit c2d9710

Please sign in to comment.