mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-10 22:31:57 +00:00
20 lines
390 B
JavaScript
20 lines
390 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('vertoControllers')
|
|
.controller('ModalDialpadController', ['$scope',
|
|
'$modalInstance',
|
|
function($scope, $modalInstance) {
|
|
|
|
$scope.ok = function() {
|
|
$modalInstance.close('Ok.');
|
|
};
|
|
|
|
$scope.cancel = function() {
|
|
$modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
}
|
|
]);
|
|
})(); |