aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/mod.js
diff options
context:
space:
mode:
authorpzread <netfirewall@gmail.com>2013-06-29 01:51:58 +0800
committerpzread <netfirewall@gmail.com>2013-06-29 01:51:58 +0800
commit9542c558b71107e542e54d98ebdd8087f9446eb8 (patch)
tree2bd46fb90a1d35738c79ff27fccbc679c8706a0b /src/js/mod.js
parentb2ac7286c8ed3267b257f7ec88aa739a134089d8 (diff)
downloadtaiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar.gz
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar.bz2
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar.lz
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar.xz
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.tar.zst
taiwan-online-judge-9542c558b71107e542e54d98ebdd8087f9446eb8.zip
Fix several bugs
Diffstat (limited to 'src/js/mod.js')
-rw-r--r--src/js/mod.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/js/mod.js b/src/js/mod.js
new file mode 100644
index 0000000..b8cae5f
--- /dev/null
+++ b/src/js/mod.js
@@ -0,0 +1,18 @@
+var mod = new function(){
+ var that = this;
+
+ that.ready = function(){
+ var sq_node = new vus.node('sq');
+
+ sq_node.url_chg = function(direct,url_upart,url_dpart,param){
+ if(direct == 'in'){
+
+ }else if(direct == 'out'){
+
+ }
+
+ return 'stop';
+ };
+ com.vus_root.child_set(sq_node);
+ };
+}