diff options
| author | Jens Mönig <jens@moenig.org> | 2013-04-18 02:19:37 -0700 |
|---|---|---|
| committer | Jens Mönig <jens@moenig.org> | 2013-04-18 02:19:37 -0700 |
| commit | cfc84accea904bdac9e24ec0b95813e20e8bba3a (patch) | |
| tree | 06b588cebe8c1c112ba9cb74ca5f3cac06301910 /blocks.js | |
| parent | bf15956f614902c06dca8d3f97bbc371de54fb9b (diff) | |
| parent | 8342c06e274333910fd97a92dd44cecfe8494511 (diff) | |
| download | snap-yow-cfc84accea904bdac9e24ec0b95813e20e8bba3a.tar.gz snap-yow-cfc84accea904bdac9e24ec0b95813e20e8bba3a.zip | |
Merge pull request #48 from queryselector/issue-47
Fixed #47
Diffstat (limited to 'blocks.js')
| -rw-r--r-- | blocks.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5657,7 +5657,7 @@ InputSlotMorph.prototype.dropDownMenu = function () { } menu.addItem(' ', null); for (key in choices) { - if (choices.hasOwnProperty(key)) { + if (Object.prototype.hasOwnProperty.call(choices, key)) { if (key[0] === '~') { menu.addLine(); } else { |
