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:
Jeff Schiller
2009-09-22 21:50:55 +00:00
parent 7ce74cf04d
commit 6b0bec3a0d
2 changed files with 8 additions and 4 deletions

View File

@@ -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