summaryrefslogtreecommitdiff
path: root/gui.js
diff options
context:
space:
mode:
authorNathan Dinsmore <queryselector@gmail.com>2013-04-15 20:29:03 -0400
committerNathan Dinsmore <queryselector@gmail.com>2013-04-15 21:06:44 -0400
commit8342c06e274333910fd97a92dd44cecfe8494511 (patch)
tree4189c61cb13c21c50c13acdda6eaf78afbf5a0ae /gui.js
parent15718f44a30a022a5f45001f3fd2d506da504ff1 (diff)
downloadsnap-byow-8342c06e274333910fd97a92dd44cecfe8494511.tar.gz
snap-byow-8342c06e274333910fd97a92dd44cecfe8494511.zip
Fixed #47
Diffstat (limited to 'gui.js')
-rw-r--r--gui.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.js b/gui.js
index d4320f2..e0c5659 100644
--- a/gui.js
+++ b/gui.js
@@ -2079,7 +2079,7 @@ IDE_Morph.prototype.aboutSnap = function () {
+ '\nJoe Otto: Morphic Testing and Debugging';
for (module in modules) {
- if (modules.hasOwnProperty(module)) {
+ if (Object.prototype.hasOwnProperty.call(modules, module)) {
versions += ('\n' + module + ' (' +
modules[module] + ')');
}
@@ -3814,7 +3814,7 @@ ProjectDialogMorph.prototype.getLocalProjectList = function () {
var stored, name, dta,
projects = [];
for (stored in localStorage) {
- if (localStorage.hasOwnProperty(stored)
+ if (Object.prototype.hasOwnProperty.call(localStorage, stored)
&& stored.substr(0, 14) === '-snap-project-') {
name = stored.substr(14);
dta = {