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