commit | 443ced0e3a68b3bf61c32466e0f75c5a41abbe47 | [log] [tgz] |
---|---|---|
author | Roger Meier <roger@apache.org> | Wed Mar 26 23:23:37 2014 +0100 |
committer | Roger Meier <roger@apache.org> | Wed Mar 26 23:23:37 2014 +0100 |
tree | 1a1f03aba192c08b944c4c4fc9aedea76e2ff5e7 | |
parent | e8ca73f62f97fe1cf05425727a9831d14316e4d4 [diff] [blame] |
js tutorial add missing semicolon
diff --git a/tutorial/js/tutorial.html b/tutorial/js/tutorial.html index 112da70..d7f3945 100755 --- a/tutorial/js/tutorial.html +++ b/tutorial/js/tutorial.html
@@ -49,7 +49,7 @@ var protocol = new Thrift.Protocol(transport); var client = new CalculatorClient(protocol); - var work = new Work() + var work = new Work(); work.num1 = $("#num1").val(); work.num2 = $("#num2").val(); work.op = $("#op").val();