fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Wersja XML.
[redakcja.git]
/
project
/
static
/
js
/
jquery.logging.js
diff --git
a/project/static/js/jquery.logging.js
b/project/static/js/jquery.logging.js
index
9a7fbe0
..
315d48f
100644
(file)
--- a/
project/static/js/jquery.logging.js
+++ b/
project/static/js/jquery.logging.js
@@
-1,16
+1,21
@@
(function($) {
(function($) {
- const LEVEL_DEBUG = 1;
- const LEVEL_INFO = 2;
- const LEVEL_WARN = 3;
-
- const LOG_LEVEL = LEVEL_DEBUG;
+ var LEVEL_DEBUG = 1;
+ var LEVEL_INFO = 2;
+ var LEVEL_WARN = 3;
+ var LOG_LEVEL = LEVEL_DEBUG;
var mozillaLog = function() {
var mozillaLog = function() {
- if (window.console) console.log.apply(this, arguments);
+ if (window.console)
+ console.log.apply(this, arguments);
};
};
+ var safariLog = function() {
+ if (window.console)
+ console.log.apply(console, arguments);
+ };
+
var operaLog = function() {
var operaLog = function() {
- opera.postError
.
(arguments.join(' '));
+ opera.postError(arguments.join(' '));
};
var defaultLog = function() { return false; };
};
var defaultLog = function() { return false; };
@@
-19,10
+24,12
@@
return $.log.browserLog.apply(this, arguments);
};
return $.log.browserLog.apply(this, arguments);
};
- if ($.browser.mozilla
|| $.browser.safari
)
+ if ($.browser.mozilla)
$.log.browserLog = mozillaLog;
$.log.browserLog = mozillaLog;
+ else if ($.browser.safari)
+ $.log.browserLog = safariLog;
else if($.browser.opera)
else if($.browser.opera)
- $.log.browserLog = operaLog
+ $.log.browserLog = operaLog
;
else
$.log.browserLog = defaultLog;
else
$.log.browserLog = defaultLog;