Wallet/src/js/controllers/servicesController.js

15 lines
334 B
JavaScript
Raw Normal View History

2017-12-13 20:58:05 +09:00
'use strict';
angular.module('copayApp.controllers').controller('servicesController', function($scope, $ionicScrollDelegate, $timeout) {
$scope.hide = false;
$scope.toggle = function() {
$scope.hide = !$scope.hide;
$timeout(function() {
$ionicScrollDelegate.resize();
$scope.$apply();
}, 10);
};
});