mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
added baseURL export to pad.js, timeslider.js, plugins.js, fixing #670
This commit is contained in:
parent
d554420f57
commit
513deef768
5 changed files with 33 additions and 16 deletions
|
@ -24,6 +24,7 @@ exports.loaded = false;
|
|||
exports.plugins = {};
|
||||
exports.parts = [];
|
||||
exports.hooks = {};
|
||||
exports.baseURL = '';
|
||||
|
||||
exports.ensure = function (cb) {
|
||||
if (!exports.loaded)
|
||||
|
@ -103,7 +104,7 @@ if (exports.isClient) {
|
|||
// which appears to fix the issue.
|
||||
var callback = function () {setTimeout(cb, 0);};
|
||||
|
||||
jQuery.getJSON('../pluginfw/plugin-definitions.json', function(data) {
|
||||
jQuery.getJSON(exports.baseURL + 'pluginfw/plugin-definitions.json', function(data) {
|
||||
exports.plugins = data.plugins;
|
||||
exports.parts = data.parts;
|
||||
exports.hooks = exports.extractHooks(exports.parts, "client_hooks");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue