diff --git a/index.html b/index.html index 3eb82e3..64ccebf 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@
- +
@@ -82,7 +82,7 @@
- +
@@ -92,7 +92,7 @@
- +
@@ -100,7 +100,7 @@
- +
@@ -110,11 +110,11 @@
- +
- +
@@ -122,7 +122,7 @@
- +
@@ -132,11 +132,11 @@
- +
- +
diff --git a/js/main.js b/js/main.js index 7eba306..019f5ba 100644 --- a/js/main.js +++ b/js/main.js @@ -3,16 +3,16 @@ var selectList = []; $(document).ready(function () { loadLangs(); - $("#langLink").click(function (evt) { - evt.preventDefault(); + $("#langLink").click(function (e) { + e.preventDefault(); loadLangs(); }); - $("#snippetLink").click(function (evt) { - evt.preventDefault(); + $("#snippetLink").click(function (e) { + e.preventDefault(); loadSnippets(); }); - $("#resourceLink").click(function (evt) { - evt.preventDefault(); + $("#resourceLink").click(function (e) { + e.preventDefault(); loadResources(); }); @@ -50,8 +50,7 @@ function buildLangSelect() { function addSelectLangs(langList) { var selectors = $(".langSelect"); selectors.empty(); - for (var i = 0; i < langList.length; i++) { - var cur = langList[i]; + for (let cur of langList) { $("