mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: javascript console replacement's condition is incorrect
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@115158 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
573acaed89
commit
517a51194b
2
thirdparty/firebug-lite/firebug.js
vendored
2
thirdparty/firebug-lite/firebug.js
vendored
@ -1,5 +1,5 @@
|
||||
|
||||
if (!window.console || !console.firebug) {
|
||||
if (!window.console && !console.firebug) {
|
||||
(function()
|
||||
{
|
||||
window.console =
|
||||
|
2
thirdparty/firebug-lite/firebugx.js
vendored
2
thirdparty/firebug-lite/firebugx.js
vendored
@ -1,5 +1,5 @@
|
||||
|
||||
if (!window.console || !console.firebug)
|
||||
if (!window.console && !console.firebug)
|
||||
{
|
||||
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
|
||||
"group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
|
||||
|
Loading…
Reference in New Issue
Block a user