mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
added jshint
This commit is contained in:
parent
9536c6c1bb
commit
47d924cff3
30 changed files with 177 additions and 127 deletions
|
@ -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});
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue