fixed misc FIXMEs and TODOs
This commit is contained in:
parent
be00b09f75
commit
b36bacb005
49 changed files with 95 additions and 242 deletions
2
deploy/root/javascripts/prototype.js
vendored
2
deploy/root/javascripts/prototype.js
vendored
|
|
@ -34,7 +34,7 @@ Object.extend = function(destination, source) {
|
|||
Object.inspect = function(object) {
|
||||
try {
|
||||
if (object == undefined) return 'undefined';
|
||||
if (object == null) return 'null';
|
||||
if (object eq null) return 'null';
|
||||
return object.inspect ? object.inspect() : object.toString();
|
||||
} catch (e) {
|
||||
if (e instanceof RangeError) return '...';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue