fixed error property $ of object is not a function

changed $ to jQuery, because without it the system would generate the following error:

Uncaught TypeError: Property '$' of object [object Window] is not a function
This commit is contained in:
roed 2013-02-19 09:20:29 +01:00
parent d00fa67f3e
commit 396af557df

View File

@ -1051,7 +1051,7 @@ jQuery.noConflict();
}(jQuery));
var statusMessage = function(text, type) {
text = $('<div/>').text(text).html(); // Escape HTML entities in text
text = jQuery('<div/>').text(text).html(); // Escape HTML entities in text
jQuery.noticeAdd({text: text, type: type});
};