Преглед на файлове

Add required semi-column in JS code

Yannick Warnier преди 10 години
родител
ревизия
9a21243d27
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      plugin/buycourses/js/buycourses.js

+ 3 - 3
plugin/buycourses/js/buycourses.js

@@ -7,7 +7,7 @@ $(document).ready(function () {
     $("input[name='price']").change(function () {
         $(this).parent().next().children().attr("style", "display:none");
         $(this).parent().next().children().next().attr("style", "display:''");
-        $(this).parent().parent().addClass("fmod")
+        $(this).parent().parent().addClass("fmod");
         $(this).parent().parent().children().each(function () {
             $(this).addClass("btop");
         });
@@ -16,7 +16,7 @@ $(document).ready(function () {
     $("input[name='price']").keyup(function () {
         $(this).parent().next().children().attr("style", "display:none");
         $(this).parent().next().children().next().attr("style", "display:''");
-        $(this).parent().parent().addClass("fmod")
+        $(this).parent().parent().addClass("fmod");
         $(this).parent().parent().children().each(function () {
             $(this).addClass("btop");
         });
@@ -25,7 +25,7 @@ $(document).ready(function () {
     $("input[name='visible']").change(function () {
         $(this).parent().next().next().children().attr("style", "display:none");
         $(this).parent().next().next().children().next().attr("style", "display:''");
-        $(this).parent().parent().addClass("fmod")
+        $(this).parent().parent().addClass("fmod");
         $(this).parent().parent().children().each(function () {
             $(this).addClass("btop");
         });