Skip to content
Snippets Groups Projects
Commit dee2b77b authored by syuilo's avatar syuilo
Browse files

oops

parent 6119312a
No related branches found
No related tags found
No related merge requests found
......@@ -11,13 +11,7 @@
'use strict';
// Chromeで確認したことなのですが、constやletを用いたとしても
// グローバルなスコープで定数/変数を定義するとwindowのプロパティ
// としてそれがアクセスできるようになる訳ではありませんが、普通に
// コンソールから定数/変数名を入力するとアクセスできてしまいます。
// ブロック内に入れてスコープを非グローバル化するとそれが防げます
// (Chrome以外のブラウザでは検証していません)
{
(function() {
// キャッシュ削除要求があれば従う
if (localStorage.getItem('shouldFlush') == 'true') {
refresh();
......@@ -138,4 +132,4 @@
// Force reload
location.reload(true);
}
}
})();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment