소스 검색

Removing useless comments

Alexandre Mottier 4 년 전
부모
커밋
9a3da00638
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      index.php

+ 2 - 2
index.php

@@ -9,8 +9,8 @@
   <script>
         $(document).ready(function() {
         $('#btn_click').on('click', function() {
-        var url = 'index.php'; //please insert the url of the your current page here, we are assuming the url is 'index.php'
-        $('#passgen-wrapper').load(url + ' #passgen'); //note: the space before #div1 is very important
+        var url = 'index.php';
+        $('#passgen-wrapper').load(url + ' #passgen');
         });
     });
   </script>