aboutsummaryrefslogtreecommitdiff
path: root/js/lib/elgglib.js
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-09-13 22:21:12 -0400
committerCash Costello <cash.costello@gmail.com>2011-09-13 22:21:12 -0400
commit8a2611e5002982cbfd2843240c181c0796b043b2 (patch)
tree481f7d4ca018e3fcdc241b5b140b01bbd1c93562 /js/lib/elgglib.js
parent61337b126e0ee3a316f5cb9faf8982b0803793a4 (diff)
downloadelgg-8a2611e5002982cbfd2843240c181c0796b043b2.tar.gz
elgg-8a2611e5002982cbfd2843240c181c0796b043b2.tar.bz2
Fixes #3539 two conditions for triggering init,system now - dom is ready and languages loaded
Diffstat (limited to 'js/lib/elgglib.js')
-rw-r--r--js/lib/elgglib.js17
1 files changed, 16 insertions, 1 deletions
diff --git a/js/lib/elgglib.js b/js/lib/elgglib.js
index f2545fb6c..9a372738d 100644
--- a/js/lib/elgglib.js
+++ b/js/lib/elgglib.js
@@ -379,4 +379,19 @@ elgg.getSelectorFromUrlFragment = function(url) {
}
}
return '';
-}; \ No newline at end of file
+};
+
+/**
+ * Triggers the init hook when the library is ready
+ *
+ * Current requirements:
+ * - DOM is ready
+ * - languages loaded
+ *
+ */
+elgg.initWhenReady = function() {
+ if (elgg.config.languageReady && elgg.config.domReady) {
+ elgg.trigger_hook('init', 'system');
+ elgg.trigger_hook('ready', 'system');
+ }
+} \ No newline at end of file