diff --git a/README.md b/README.md index fefb506..c6477ff 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ meteor add pahans:reactive-modal ``` #### For older versions than 0.9 -```js +```js mrt add reactive-modal ``` ### make sure you have bootstrap-3 or less-bootstrap-3 installed or bootstrap-3 from a other resource. ```js mrt add bootstrap-3 ``` -###Init your bootstrap modal +###Init your bootstrap modal a meteor template is the body of your modal ```html @@ -32,7 +32,8 @@ Meteor.startup(function(){ var shareDialogInfo = { template: Template.appShareDialog, title: "Share the app", - modalDialogClass: "share-modal-dialog", //optional + modalContainerClass: "share-modal", //optional + modalDialogClass: "share-modal-dialog modal-lg", //optional modalBodyClass: "share-modal-body", //optional modalFooterClass: "share-modal-footer",//optional removeOnHide: true, //optional. If this is true, modal will be removed from DOM upon hiding diff --git a/lib/reactive-modal.html b/lib/reactive-modal.html index 7c41839..91843c3 100644 --- a/lib/reactive-modal.html +++ b/lib/reactive-modal.html @@ -1,18 +1,18 @@