Enable console.log() for Opera
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@688 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -14,10 +14,12 @@ Issue 73 (Layers) TODO:
|
||||
*/
|
||||
|
||||
if(!window.console) {
|
||||
window.console = new function() {
|
||||
this.log = function(str) {};
|
||||
this.dir = function(str) {};
|
||||
};
|
||||
window.console = {};
|
||||
window.console.log = function(str) {};
|
||||
window.console.dir = function(str) {};
|
||||
}
|
||||
if( window.opera ) {
|
||||
window.console.log = function(str) {opera.postError(str);}
|
||||
}
|
||||
|
||||
// this defines which elements and attributes that we support
|
||||
|
||||
Reference in New Issue
Block a user