-
Notifications
You must be signed in to change notification settings - Fork 6.7k
pr3429 - Allow for custom user modal sizes #3431
Conversation
Removed restriction to Bootstrap-native `modal-sm` and `modal-lg` size classes.
@RevanProdigalKnight , your committer email is set to a domain of |
@@ -1,3 +1,3 @@ | |||
<div modal-render="{{$isRendered}}" tabindex="-1" role="dialog" class="modal fade" ng-class="{in: animate}" ng-style="{'z-index': 1050 + index*10, display: 'block'}" ng-click="close($event)"> | |||
<div class="modal-dialog" ng-class="{'modal-sm': size == 'sm', 'modal-lg': size == 'lg'}"><div class="modal-content" modal-transclude></div></div> | |||
<div class="modal-dialog" ng-class="size ? 'modal-' + size"><div class="modal-content" modal-transclude></div></div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs : ''
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, should be fixed now. You'd think after writing it right in the issue conversation I wouldn't make that sort of mistake...
No, I did not intend that. I'm not entirely sure how to change that. |
See https://help.github.com/articles/setting-your-email-in-git/ . You can then force push to update this PR's branch and it'll have your correct email. |
Having to put in an unnecessary space that I'll then remove in order to get this to allow me to push...
removing the unnecessary space from the push force
Thank you! Merged and added a test. |
Removed restriction to Bootstrap-native
modal-sm
andmodal-lg
size classes.This change should not require any documentation changes