Updated to the latest iteration of the sales tracking app; Added some temporary photos for UBS.

This commit is contained in:
Wynne Crisman
2016-10-03 11:00:49 -07:00
parent 105e657b35
commit 20ffd82abb
25 changed files with 7709 additions and 156 deletions

View File

@@ -0,0 +1,23 @@
//Client side brainstorm.
var Brainstorm;
+function($) {
Brainstorm = function(options) {
var _this = this;
this.options = $.extend({}, Brainstorm.DEFAULTS, options);
this.socket = io.connect(options.url);
this.socket.on('name', function(data) {
});
};
Brainstorm.DEFAULTS = {
url: '' //The url to make a websocket connection to.
};
Brainstorm.prototype.query = function(params) {
this.socket.emit("query", params);
};
}(jquery);