Skip to content

Commit e9c441c

Browse files
committed
Merge pull request #24 from dawsonbotsford/master
Spelling Correction from Dawson's Spelling Bee
2 parents 213386a + 56777e3 commit e9c441c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Some sites using a similar effects:
1515
- http://wandaprint.com/home/
1616
- http://www.puma.com/actvrcvr/
1717

18-
Invite me to a coffe
18+
Invite me to a coffee
1919
[![Donate](https://www.paypalobjects.com/en_US/GB/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/es/cgi-bin/webscr?cmd=_donations&business=BEK5JQCQMED4J&lc=GB&item_name=multiScroll%2ejs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
2020

2121
Customizations of the plugin available upon request for some reasonable price. <a href="http://alvarotrigo.com/#contact-page">Contact me</a>.
@@ -63,7 +63,7 @@ The active section by default will be the first section, which is taken as the h
6363
```
6464

6565
If you want to define a different starting point rather than the first section, just add the class active to the section you want to show on load.
66-
This should be done for the `ms-righ` and `ms-left` elements.
66+
This should be done for the `ms-right` and `ms-left` elements.
6767

6868
```javascript
6969
<div class="ms-section active">Some section</div>
@@ -122,7 +122,7 @@ You can also use the `menu` option and make use of anchor links (#) as explained
122122

123123
- `verticalCentered`: (default `true`) Vertically centering of the content within sections.
124124

125-
- `scrollingSpeed`: (default `700`) Speed in miliseconds for the scrolling transitions.
125+
- `scrollingSpeed`: (default `700`) Speed in milliseconds for the scrolling transitions.
126126

127127
- `sectionsColor`:(default `none`) Define the CSS `background-color` property for each section:
128128
Example:
@@ -135,7 +135,7 @@ $('#multiscroll').multiscroll({
135135
- `anchors`: (default `[]`) Defines the anchor links (#example) to be shown on the URL for each section. Using anchors forward and backward navigation will also be possible through the browser. This option also allows users to bookmark a specific section. **Be careful!** if you use anchors, they can not have the same value as any ID element on the site (or NAME element for IE).
136136

137137
- `easing`: (default `easeInQuart`) Defines the transition effect to use for the vertical and horizontal scrolling.
138-
It requieres the file `vendors/jquery.easings.min.js` or [jQuery UI](http://jqueryui.com/) for using some of its transitions. Other libraries could be used instead.
138+
It requires the file `vendors/jquery.easings.min.js` or [jQuery UI](http://jqueryui.com/) for using some of its transitions. Other libraries could be used instead.
139139

140140
- `loopTop`: (default `false`) Defines whether scrolling up in the first section should scroll to the last one or not.
141141

@@ -206,22 +206,22 @@ $.fn.multiscroll.moveTo(3);
206206
```
207207

208208
### setAllowScrolling
209-
Adds or remove the possiblity of scrolling through sections by using the mouse wheel/trackpad or touch gestures (which is active by default).
209+
Adds or remove the possibility of scrolling through sections by using the mouse wheel/trackpad or touch gestures (which is active by default).
210210

211211
```javascript
212212
$.fn.multiscroll.setAllowScrolling(false);
213213
```
214214

215215
### setKeyboardScrolling
216-
Adds or remove the possiblity of scrolling through sections by using the keyboard arrow keys (which is active by default).
216+
Adds or remove the possibility of scrolling through sections by using the keyboard arrow keys (which is active by default).
217217

218218
```javascript
219219
$.fn.multiscroll.setKeyboardScrolling(false);
220220
```
221221

222222

223223
### setScrollingSpeed
224-
Defines the scrolling speed in miliseconds.
224+
Defines the scrolling speed in milliseconds.
225225

226226
```javascript
227227
$.fn.multiscroll.setScrollingSpeed(700);
@@ -294,7 +294,7 @@ Example:
294294
```javascript
295295
$('#multiscroll').multiscroll({
296296
afterRender: function(){
297-
alert("The resulting DOM stucture is ready");
297+
alert("The resulting DOM structure is ready");
298298
}
299299
});
300300
```

0 commit comments

Comments
 (0)