From 4db0a28df08bb97d6dfd149a6ff5a2e3882c41ef Mon Sep 17 00:00:00 2001 From: Mario Colque Date: Wed, 23 Apr 2014 12:59:21 -0300 Subject: [PATCH] moved bitcore into angular controller --- js/controllers/transactions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index 7cc47598e..c47efd739 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -1,8 +1,9 @@ 'use strict'; -var bitcore = require('bitcore'); angular.module('copay.transactions').controller('TransactionsController', function($scope, $rootScope, $location) { + var bitcore = require('bitcore'); + $scope.title = 'Transactions'; var _updateTxs = function() { var w =$rootScope.wallet;