Commit 80505297 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

moved init() to js file

parent 5ffa30a5
<html> <!DOCTYPE html>
<html lang="en">
<head> <head>
<meta charset="utf-8"/>
<script src="js/jquery-2.2.3.js"></script> <script src="js/jquery-2.2.3.js"></script>
<script src="jquery.ajax.queue.js"></script> <script src="jquery.ajax.queue.js"></script>
<script src="debugfs.js"></script> <script src="debugfs.js"></script>
...@@ -7,6 +9,6 @@ ...@@ -7,6 +9,6 @@
<link rel="stylesheet" href="js/bootstrap/css/bootstrap.css"/> <link rel="stylesheet" href="js/bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="debugfs.css"/> <link rel="stylesheet" href="debugfs.css"/>
</head> </head>
<body onload='init()'> <body>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
* for the JavaScript code in this page. * for the JavaScript code in this page.
*/ */
window.onload = function(){
init();
}
var CUT_STRING_LIMIT = 20; var CUT_STRING_LIMIT = 20;
var NLINES = 30; var NLINES = 30;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment