Skip to content

Commit 1607609

Browse files
committed
Fix typo in readme
1 parent 9cce9a5 commit 1607609

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ You can initiate the function with javascript instead of an HTML markup in case
8888

8989
````javascript
9090
$(".am-remote-link").adaptiveModal({
91-
elementAnimateTime: 100, // Define the animation time for each element to animate when the modal is openned/closed. The option accept milliseconds. The default value is 100.
92-
customBgColor: "#333", // In case the link have no background color to derive from you can set the background color of the modal here. The option accept HEX, RGB, and RGBA The default value is "#333333".
93-
remoteUrl: false, // You can define the remote URL here as well as the markup. The option accept generic URL. The default value is false.
91+
elementAnimateTime: 100, // Define the animation time for each element to animate when the modal is openned/closed. The option accepts milliseconds. The default value is 100.
92+
customBgColor: "#333", // In case the link have no background color to derive from you can set the background color of the modal here. The option accepts HEX, RGB, and RGBA The default value is "#333333".
93+
remoteUrl: false, // You can define the remote URL here as well as the markup. The option accepts generic URL. The default value is false.
9494
elementAnimateIn: "scaleShow", // Require Animate.css extension: You can define the element inside the modal its own entrance animation by putting the Animate.css class name here. The default value is the built-in scaleShow animation.
9595
elementAnimateOut: "scaleHide", // Require Animate.css extension: You can define the element inside the modal its own exit animation by putting the Animate.css class name here. The default value is the built-in scaleHide animation.
9696
beforeAnimate: function(el, status) {}, // Callback function execute before the animation begins. Parameters available are el, and status which returns the jQuery object and the status of the animation, ie "open" will return when the animation is opening the modal, and vice versa, respectively.
@@ -137,7 +137,7 @@ This callback function will be called right after the animation stops. Parameter
137137
````
138138

139139
## Public Methods
140-
You can call these methods to programtically interact with the plugin:
140+
You can call these methods to programmatically interact with the plugin:
141141

142142
### $.fn.openModal()
143143

@@ -149,7 +149,7 @@ You can open the modal prgrapmatically by calling this function as shown below:
149149

150150
### $.fn.closeModal()
151151

152-
You can close the modal prgrapmatically by calling this function as shown below:
152+
You can close the modal programmatically by calling this function as shown below:
153153

154154
````javascript
155155
$(".am-remote-link").closeModal()

0 commit comments

Comments
 (0)