Created
April 14, 2015 13:38
-
-
Save marvinosswald/e14337167fe44830478b to your computer and use it in GitHub Desktop.
Can't access inputTitle from "submit" action
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-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | |
<h4 class="modal-title" id="myModalLabel">{{title}}</h4> | |
</div> | |
<div class="modal-body"> | |
{{yield}} | |
</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-default" data-dismiss="modal">{{btnCancel}}</button> | |
<button {{action "submit" inputTitle}} type="button" class="btn btn-primary">{{btnSave}}</button> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment