Commit c5c669a 1 parent 7f5422c commit c5c669a Copy full SHA for c5c669a
File tree 4 files changed +16
-6
lines changed
4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change
1
+ all : public/jquery-1.10.2.min.js public/raphael-2.1.0.min.js
2
+
3
+ public/jquery-1.10.2.min.js :
4
+ curl -o public/jquery-1.10.2.min.js http://code.jquery.com/jquery-1.10.2.min.js
5
+
6
+ public/raphael-2.1.0.min.js :
7
+ curl -o public/raphael-2.1.0.min.js https://raw.github.com/DmitryBaranovskiy/raphael/v2.1.0/raphael-min.js
8
+
9
+ clean :
10
+ rm -f public/jquery-1.10.2.min.js public/raphael-2.1.0.min.js
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ Getting Started
31
31
# Inside the ticked directory; installing locally
32
32
npm install
33
33
34
- (cd public && curl -O http://code.jquery.com/jquery-1.10.2.min.js)
35
- (cd public && curl -o raphael-2.1.0.min.js https://raw.github.com/DmitryBaranovskiy/raphael/v2.1.0/raphael-min.js)
36
-
37
34
4 . start the ticked server.
38
35
39
36
node ticked.js
Original file line number Diff line number Diff line change 22
22
"type" : " git" ,
23
23
"url" : " https://github.com/aronatkins/ticked"
24
24
},
25
- "scripts" : {"start" : " node ticked.js" },
25
+ "scripts" : {
26
+ "start" : " node ticked.js" ,
27
+ "install" : " make"
28
+ },
26
29
"private" : true
27
- }
30
+ }
Original file line number Diff line number Diff line change 6
6
< script src ="/socket.io/socket.io.js "> </ script >
7
7
< script src ="/jquery-1.10.2.min.js "> </ script >
8
8
< script src ="/raphael-2.1.0.min.js "> </ script >
9
- < title > ticker </ title >
9
+ < title > ticked </ title >
10
10
< style >
11
11
# buckets div { width : 150px ; float : left; }
12
12
</ style >
You can’t perform that action at this time.
0 commit comments