new static files.
Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
5da7cfab99
commit
bb68c32ba5
772 changed files with 71557 additions and 0 deletions
19
static/cms/js/jstree/_lib/jquery.log.js
Normal file
19
static/cms/js/jstree/_lib/jquery.log.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
(function($){ // block scope
|
||||
jQuery.fn.log = function (msg) {
|
||||
if (!window.console || !console) return;
|
||||
if (window.console || console.firebug){
|
||||
msg = msg || '';
|
||||
if(msg !== '') msg += ': ';
|
||||
console.log("%s%o", msg, this);
|
||||
}
|
||||
return this;
|
||||
};
|
||||
$.extend({
|
||||
log : function (msg) {
|
||||
if (!window.console || !console) return;
|
||||
if (window.console || console.firebug) {
|
||||
console.log("%s", msg);
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
Loading…
Add table
Add a link
Reference in a new issue