change angular module namespace to copayApp

This commit is contained in:
Matias Alejo Garcia 2014-06-03 16:39:06 -03:00
commit ac58d9744e
21 changed files with 92 additions and 89 deletions

View file

@ -1,6 +1,6 @@
'use strict';
angular.module('copay.controllerUtils')
angular.module('copayApp.controllerUtils')
.factory('controllerUtils', function($rootScope, $sce, $location, $notification, Socket, video) {
var root = {};
var bitcore = require('bitcore');

View file

@ -1,3 +1,3 @@
'use strict';
angular.module('copay.passphrase').value('Passphrase', new copay.Passphrase(config.passphrase));
angular.module('copayApp.passphrase').value('Passphrase', new copay.Passphrase(config.passphrase));

View file

@ -1,6 +1,6 @@
'use strict';
angular.module('copay.socket').factory('Socket',
angular.module('copayApp.socket').factory('Socket',
function($rootScope) {
var listeners = [];
var url = 'http://' + config.socket.host + ':' + config.socket.port;

View file

@ -93,4 +93,4 @@ Video.prototype.close = function() {
this.mediaConnections = {};
};
angular.module('copay.video').value('video', new Video());
angular.module('copayApp.video').value('video', new Video());

View file

@ -1,4 +1,4 @@
'use strict';
angular.module('copay.walletFactory').value('walletFactory', new copay.WalletFactory(config, copay.version));
angular.module('copayApp.walletFactory').value('walletFactory', new copay.WalletFactory(config, copay.version));