diff options
Diffstat (limited to 'engine/js/lib/elgglib.js')
-rw-r--r-- | engine/js/lib/elgglib.js | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/engine/js/lib/elgglib.js b/engine/js/lib/elgglib.js index 5c32deaaf..f7c30bdc2 100644 --- a/engine/js/lib/elgglib.js +++ b/engine/js/lib/elgglib.js @@ -9,11 +9,10 @@ */
var elgg = elgg || {};
-elgg.init = function() {
- //if the user clicks a system message, make it disappear
- $('.elgg_system_message').live('click', function() {
- $(this).stop().fadeOut('fast');
- });
+elgg.assertTypeOf = function(type, param) {
+ if (typeof param !== type) {
+ throw new TypeError("Expecting param to be a " + type + ". Was a " + typeof param + ".");
+ }
};
/**
@@ -176,12 +175,4 @@ elgg.register_error = function(errors, delay) { */
elgg.forward = function(url) {
location.href = elgg.extendUrl(url);
-};
-
-/**
- * Initialise Elgg
- * @todo How should plugins, etc. initialize themselves?
- */
-$(function() {
- elgg.init();
-});
+};
\ No newline at end of file |