diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/.eslintrc.json | 5 | ||||
-rw-r--r-- | demos/bootstrap.js | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/demos/.eslintrc.json b/demos/.eslintrc.json new file mode 100644 index 000000000..da1cb6b90 --- /dev/null +++ b/demos/.eslintrc.json @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "../ui/.eslintrc.json" +} diff --git a/demos/bootstrap.js b/demos/bootstrap.js index 9a82071c7..9b0468028 100644 --- a/demos/bootstrap.js +++ b/demos/bootstrap.js @@ -1,5 +1,6 @@ /* globals window, document */ ( function() { +"use strict"; // Find the script element var scripts = document.getElementsByTagName( "script" ); |