added services list

This commit is contained in:
Kadir Sekha 2017-12-13 20:58:05 +09:00
commit f8227922b9
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,15 @@
'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);
};
});