Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dismiss text "x" in angular-prompt.html #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions angular-prompt.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div>
<div class="modal-header">
<button type="button" class="close pull-right" ng-click="$dismiss()" aria-hidden="true">×</button>
<button type="button" class="close pull-right" ng-click="$dismiss()" aria-hidden="true">&times;</button>
<h4 class="modal-title">{{options.title}}</h4>
</div>
<div class="modal-body">
Expand Down Expand Up @@ -30,4 +30,4 @@ <h4 class="modal-title">{{options.title}}</h4>
<div class="modal-footer">
<button ng-repeat="button in options.buttons track by button.label" class="btn btn-default {{button.class}}" ng-class="{'btn-primary':button.primary}" ng-click="buttonClicked(button)">{{button.label}}</button>
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions dist/angular-prompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ angular.module('cgPrompt').run(['$templateCache', function($templateCache) {
$templateCache.put('angular-prompt.html',
"<div>\n" +
" <div class=\"modal-header\">\n" +
" <button type=\"button\" class=\"close pull-right\" ng-click=\"$dismiss()\" aria-hidden=\"true\">×</button>\n" +
" <button type=\"button\" class=\"close pull-right\" ng-click=\"$dismiss()\" aria-hidden=\"true\">&times;</button>\n" +
" <h4 class=\"modal-title\">{{options.title}}</h4>\n" +
" </div>\n" +
" <div class=\"modal-body\">\n" +
Expand Down Expand Up @@ -136,7 +136,7 @@ angular.module('cgPrompt').run(['$templateCache', function($templateCache) {
" <div class=\"modal-footer\">\n" +
" <button ng-repeat=\"button in options.buttons track by button.label\" class=\"btn btn-default {{button.class}}\" ng-class=\"{'btn-primary':button.primary}\" ng-click=\"buttonClicked(button)\">{{button.label}}</button>\n" +
" </div>\n" +
"</div>"
"</div>\n"
);

}]);
2 changes: 1 addition & 1 deletion dist/angular-prompt.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.