added jshint

This commit is contained in:
kayone 2013-11-10 20:09:11 -08:00
parent 9536c6c1bb
commit 47d924cff3
30 changed files with 177 additions and 127 deletions

View file

@ -18,7 +18,7 @@ define(
getValue: function (key, defaultValue) {
var storeValue = localStorage.getItem(key);
var storeValue = window.localStorage.getItem(key);
if (!storeValue) {
return defaultValue;
@ -35,7 +35,7 @@ define(
return;
}
localStorage.setItem(key, value);
window.localStorage.setItem(key, value);
vent.trigger(this.Events.ConfigUpdatedEvent, {key: key, value: value});
}