Przeglądaj źródła

updated logger to avoid logging arrays

bubble
Tony Tam 10 lat temu
rodzic
commit
fbe5278928
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/main/javascript/doc.js

+ 1
- 1
src/main/javascript/doc.js Wyświetl plik

@@ -66,7 +66,7 @@ log = function(){
log.history = log.history || [];
log.history.push(arguments);
if(this.console){
console.log( Array.prototype.slice.call(arguments) );
console.log( Array.prototype.slice.call(arguments)[0] );
}
};


Ładowanie…
Anuluj
Zapisz