Last active
August 29, 2015 14:19
-
-
Save ivanmorales/e08a66d3054f89c49d49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$modal.open | |
templateUrl: '/my-view.html' | |
controller: 'ModalController as ctrl' | |
resolve: | |
message: -> | |
'Success' | |
$modal.open | |
templateUrl: '/my-view.html' | |
controller: 'ModalController as ctrl' | |
resolve: | |
message: -> | |
'Error' | |
class ModalController | |
@$inject: ['$modalInstance', 'message'] | |
constructor: (@$modalInstance, @message)-> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="modal-header"> | |
<h3 class="modal-title">Activity</h3> | |
</div> | |
<div class="modal-body"> | |
<div ng-bind="ctrl.message"></div> | |
</div> | |
<div class="modal-footer"> | |
<button class="btn btn-primary" ng-click="modalCtrl.ok()">OK</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment