From 396af557df200c078d91c4649e465a87ef3413ce Mon Sep 17 00:00:00 2001 From: roed Date: Tue, 19 Feb 2013 09:20:29 +0100 Subject: [PATCH] fixed error property $ of object is not a function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changed $ to jQuery, because without it the system would generate the following error: Uncaught TypeError: Property '$' of object [object Window] is not a function  --- admin/javascript/LeftAndMain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/javascript/LeftAndMain.js b/admin/javascript/LeftAndMain.js index 9c8bc9cb7..4a139c430 100644 --- a/admin/javascript/LeftAndMain.js +++ b/admin/javascript/LeftAndMain.js @@ -1051,7 +1051,7 @@ jQuery.noConflict(); }(jQuery)); var statusMessage = function(text, type) { - text = $('
').text(text).html(); // Escape HTML entities in text + text = jQuery('
').text(text).html(); // Escape HTML entities in text jQuery.noticeAdd({text: text, type: type}); };