MDL-51461 javascript: Fix whitespace issue

This commit is contained in:
Andrew Nicols 2015-10-06 13:16:42 +08:00 committed by Dan Poltawski
parent 7a191981b6
commit 0e30fbd1c8

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;