Merge pull request #1723 from ether/expose-broadcastslider
expose broadcast slider so plugins can interact with itpull/1709/merge
commit
dc6e2e13fe
|
@ -108,6 +108,7 @@ function init() {
|
||||||
});
|
});
|
||||||
|
|
||||||
exports.socket = socket; // make the socket available
|
exports.socket = socket; // make the socket available
|
||||||
|
exports.BroadcastSlider = BroadcastSlider; // Make the slider available
|
||||||
|
|
||||||
hooks.aCallAll("postTimesliderInit");
|
hooks.aCallAll("postTimesliderInit");
|
||||||
});
|
});
|
||||||
|
@ -133,7 +134,7 @@ function sendSocketMsg(type, data)
|
||||||
|
|
||||||
var fireWhenAllScriptsAreLoaded = [];
|
var fireWhenAllScriptsAreLoaded = [];
|
||||||
|
|
||||||
var BroadcastSlider, changesetLoader;
|
var changesetLoader;
|
||||||
function handleClientVars(message)
|
function handleClientVars(message)
|
||||||
{
|
{
|
||||||
//save the client Vars
|
//save the client Vars
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
<!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
<script type="text/javascript" >
|
<script type="text/javascript" >
|
||||||
var clientVars = {};
|
var clientVars = {};
|
||||||
|
var BroadcastSlider;
|
||||||
(function () {
|
(function () {
|
||||||
var pathComponents = location.pathname.split('/');
|
var pathComponents = location.pathname.split('/');
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@
|
||||||
|
|
||||||
var plugins = require('ep_etherpad-lite/static/js/pluginfw/client_plugins');
|
var plugins = require('ep_etherpad-lite/static/js/pluginfw/client_plugins');
|
||||||
var socket = require('ep_etherpad-lite/static/js/timeslider').socket;
|
var socket = require('ep_etherpad-lite/static/js/timeslider').socket;
|
||||||
|
BroadcastSlider = require('ep_etherpad-lite/static/js/timeslider').BroadcastSlider;
|
||||||
plugins.baseURL = baseURL;
|
plugins.baseURL = baseURL;
|
||||||
|
|
||||||
plugins.update(function () {
|
plugins.update(function () {
|
||||||
|
|
Loading…
Reference in New Issue