Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $scope.showPhonesIpnetDialog = function ($event) {
- $mdDialog.show({
- clickOutsideToClose: true,
- multiple: true,
- targetEvent: $event,
- controllerAs: 'ctrl',
- controller: mdDialogCtrl,
- templateUrl: 'views/dialogs/contacts.html',
- locals: {
- phones: $scope.phones
- },
- }
- );
- function mdDialogCtrl($scope, $mdDialog, phones) {
- $scope.phones = phones;
- $scope.closeMessage = function () {
- $mdDialog.hide();
- };
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment