new static files.

Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
rascencio 2015-06-08 23:26:27 -06:00
commit bb68c32ba5
772 changed files with 71557 additions and 0 deletions

View 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);