Merge pull request #905 from marcelklehr/feature/hook-documentReady

Add a documentReady client hook
This commit is contained in:
John McLear 2012-08-12 08:54:03 -07:00
commit 85191ca798
1 changed files with 7 additions and 0 deletions

View File

@ -353,8 +353,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();