You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bootstrap supports large modals via modal-lg, there does not seem to be a way I can find to do this using the modal component.
I had to do it in a bit of a hacky way like this:
exportdefaultEmber.View.extend({didInsertElement: function(){//Add the large class to the modal as the API does not support itthis.$().find('.modal-dialog').addClass('modal-lg');}});
Is there a better way of doing this or could this feature be added?
The text was updated successfully, but these errors were encountered:
Bootstrap supports large modals via
modal-lg
, there does not seem to be a way I can find to do this using the modal component.I had to do it in a bit of a hacky way like this:
Is there a better way of doing this or could this feature be added?
The text was updated successfully, but these errors were encountered: