Skip to content

Commit 7758d45

Browse files
committed
Fixed #93, Opera throws an exception in 11.50.
1 parent b468448 commit 7758d45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/dict.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Dict.prototype = new function()
1414

1515
this.set = function(key, value) { this._dict[PREFIX + key] = value; };
1616

17-
this.delete = function(key) { delete this._dict[PREFIX + key]; };
17+
this["delete"] = function(key) { delete this._dict[PREFIX + key]; };
1818

1919
this.get_chain = function(prop_list)
2020
{

0 commit comments

Comments
 (0)