Add a documentReady client_hook.

This commit is contained in:
Marcel Klehr 2012-07-26 12:24:59 +02:00
parent c9e8f7e7af
commit 58d5203110

View file

@ -347,8 +347,15 @@
}
var plugins = require('ep_etherpad-lite/static/js/pluginfw/plugins');
var hooks = require('ep_etherpad-lite/static/js/pluginfw/hooks');
plugins.baseURL = baseURL;
plugins.update(function () {
// Call documentReady hook
$(function() {
hooks.aCallAll('documentReady');
});
var pad = require('ep_etherpad-lite/static/js/pad');
pad.baseURL = baseURL;
pad.init();