mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
/* global angular */
|
|
angular.module('codexen')
|
|
.controller('SignOutModalController', function ($modalInstance) {
|
|
var vm = this
|
|
|
|
vm.submit = function () {
|
|
$modalInstance.close()
|
|
}
|
|
|
|
vm.cancel = function () {
|
|
$modalInstance.dismiss('cancel')
|
|
}
|
|
})
|