Sign in
梁美英
/
programming
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
d3209f8d4c32a5bdbdba6dc05b93ca723e2e5d5a
Authored by
ykxie
2017-06-12 18:06:38 +0800
1 parent
c39b392f
delete gulp-sass
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
package.json
server/app.js
package.json
View file @
d3209f8
...
...
@@ -21,7 +21,7 @@
21
21
"gulp": "^3.9.1",
22
22
"gulp-less": "^3.3.0",
23
23
"gulp-notify": "^3.0.0",
24
-
"gulp-sass": "^2.3.2",
24
+
//
"gulp-sass": "^2.3.2",
25
25
"gulp-uglify": "^2.0.1",
26
26
"gulp-watch": "^4.3.10",
27
27
"pump": "^1.0.1",
...
...
server/app.js
View file @
d3209f8
...
...
@@ -10,6 +10,10 @@ var content;
10
10
11
11
io.on('connection', function(socket) {
12
12
13
+ socket.on('join', function(username){
14
+
15
+ })
16
+
13
17
// 进入房间后同步老师端内容
14
18
io.emit('programming.content', content || "");
15
19
...
...