MDL-51461 javascript: Fix whitespace issue

This commit is contained in:
Andrew Nicols
2015-10-06 13:16:56 +08:00
parent 3ad7079217
commit f3669c2a69
+2 -2
View File
@@ -55,8 +55,8 @@ define(['core/config'], function(config) {
if (localStorage === null) {
return false;
}
// MDL-51461 - Some browsers misreport availability of local storage
// so check it is actually usable.
// MDL-51461 - Some browsers misreport availability of local storage
// so check it is actually usable.
localStorage.setItem(testKey, '1');
localStorage.removeItem(testKey);
return true;