fixed node-email-verification error

This commit is contained in:
David Baldwynn 2016-06-08 17:01:49 -07:00
commit 8e35413d67
3 changed files with 12 additions and 2 deletions

View file

@ -51,7 +51,6 @@ var config_nev = function () {
}, function(err, options){
if(err) throw err;
return
});
nev.generateTempUserModel(User);

View file

@ -690,7 +690,11 @@ angular.module('core').service('Menus', [
// Connect to Socket.io server
function connect(url) {
<<<<<<< HEAD
service.socket = io(url, {'transports': ['websocket', 'polling']});
=======
service.socket = io('https://stage.tellform.com', { transports: ['websocket', 'polling'] });
>>>>>>> ffc615a26240cdaebe88ff1064508f7120f0f4d5
}
// Wrap the Socket.io 'emit' method

File diff suppressed because one or more lines are too long