Fix travis

This commit is contained in:
Vince
2013-06-17 21:03:22 +02:00
parent 1d4ff1d2de
commit 9a3a87bd57
2 changed files with 11 additions and 8 deletions

View File

@ -57,11 +57,14 @@
window.localStorage[key] = JSON.stringify(entry); window.localStorage[key] = JSON.stringify(entry);
}, },
/**
* @private
*/
checKeyValidity_ : function(key) { checKeyValidity_ : function(key) {
if(key in this.KEY_TO_DEFAULT_VALUE_MAP_) { if(key in this.KEY_TO_DEFAULT_VALUE_MAP_) {
return true; return true;
} }
console.log("UserSettings key <"+ key +"> not find in supported keys.") console.log("UserSettings key <"+ key +"> not find in supported keys.");
return false; return false;
} }
}; };