mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-22 12:41:11 +00:00
Install lodash
This commit is contained in:
parent
0e74fb818e
commit
673402ed26
4 changed files with 1586 additions and 3 deletions
|
@ -40,11 +40,11 @@ function initialiseComponents () {
|
|||
console.log("Disconnected")
|
||||
});
|
||||
|
||||
//
|
||||
initialiseVisibilityMonitoring(socket);
|
||||
|
||||
// Render Page
|
||||
React.render(<UserMenu />, document.getElementById('side-menu'));
|
||||
React.render(<Chatroom />, document.getElementById('chatroom'));
|
||||
React.render(<Gather />, document.getElementById('gathers'));
|
||||
React.render(<CurrentUser />, document.getElementById('currentuser'));
|
||||
};
|
||||
};
|
||||
|
|
1581
npm-shrinkwrap.json
generated
1581
npm-shrinkwrap.json
generated
File diff suppressed because it is too large
Load diff
|
@ -34,6 +34,7 @@
|
|||
"gulp-react": "^3.0.1",
|
||||
"gulp-watch": "^4.3.4",
|
||||
"javascript-state-machine": "^2.3.5",
|
||||
"lodash": "^3.10.0",
|
||||
"morgan": "~1.6.1",
|
||||
"node-mysql": "~0.4.2",
|
||||
"react-tools": "~0.13.3",
|
||||
|
|
|
@ -460,7 +460,7 @@ function initialiseComponents () {
|
|||
console.log("Disconnected")
|
||||
});
|
||||
|
||||
//
|
||||
initialiseVisibilityMonitoring(socket);
|
||||
|
||||
// Render Page
|
||||
React.render(React.createElement(UserMenu, null), document.getElementById('side-menu'));
|
||||
|
@ -468,6 +468,7 @@ function initialiseComponents () {
|
|||
React.render(React.createElement(Gather, null), document.getElementById('gathers'));
|
||||
React.render(React.createElement(CurrentUser, null), document.getElementById('currentuser'));
|
||||
};
|
||||
|
||||
"use strict";
|
||||
|
||||
var Chatroom = React.createClass({displayName: "Chatroom",
|
||||
|
|
Loading…
Reference in a new issue