Skip to content
This repository was archived by the owner on Aug 5, 2020. It is now read-only.

Commit 975e321

Browse files
author
Marlow Payne
authored
Merge pull request #65 from mobify/fix-62
Fix #62
2 parents dcc548a + 0dca9cd commit 975e321

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
6.0.1
2+
- Fix [#62](https://github.com/mobify/bellows/issues/62): Use published Plugin dependency
23
- Fix [#63](https://github.com/mobify/bellows/issues/63): Short circuit open if other items are opening
34
6.0.0
45
- Publish to NPM

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ You can find a simple demo on [the Documentation page](http://mobify.github.io/b
1616

1717
* [jQuery](http://jquery.com/)
1818
* [Velocity.js](http://julian.com/research/velocity/)
19+
* [Mobify's Plugin Factory](https://www.npmjs.com/package/mobify-plugin/)
1920

2021
### Zepto Support
2122

@@ -39,7 +40,7 @@ To use with require.js, after installing through NPM you merely have to referenc
3940
{
4041
'paths': {
4142
'$': 'node_modules/bellows-ui/node_modules/jquery/dist/jquery.min',
42-
'plugin': 'node_modules/bellows-ui/node_modules/plugin/dist/plugin.min',
43+
'plugin': 'node_modules/bellows-ui/node_modules/mobify-plugin/dist/plugin.min',
4344
'velocity': 'node_modules/bellows-ui/node_modules/velocity-animate/velocity'
4445
'bellows': 'node_modules/bellows-ui/dist/bellows.min',
4546
}
@@ -103,7 +104,7 @@ At a bare minimum, your markup structure should follow the above structure. You
103104
<!-- Include dependencies -->
104105
<script src="jqueryin.js"></script>
105106
<script src="node_modules/velocity-animate/velocity.min.js"></script>
106-
<script src="node_modules/plugin/dist/plugin.min.js"></script>
107+
<script src="node_modules/mobify-plugin/dist/plugin.min.js"></script>
107108

108109
<!-- Include bellows.js -->
109110
<script src="bellows.min.js"></script>

examples/assets/js/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require.config({
55
'text': 'node_modules/text/text',
66
'$': 'node_modules/jquery/dist/jquery',
77
'velocity': 'node_modules/velocity-animate/velocity',
8-
'plugin': 'node_modules/plugin/dist/plugin.min',
8+
'plugin': 'node_modules/mobify-plugin/dist/plugin.min',
99
'bellows': 'dist/bellows',
1010
'setup-bellows': 'examples/assets/js/setup-bellows'
1111
},

examples/norequire.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h3>Header</h3>
5656
<p>Lorem honeyed locusts sit amet, none so wise, sed do eiusmod never resting ut labore et dolore magna aliqua. Manhood death before disgrace warrior, feed it to the goats spare me your false courtesy commodo consequat. Mace aute irure dolor in reprehenderit poison is a woman's weapon lord of light tower dwarf. The last of the dragons royal, godswood garron sister betrothed officia deserunt mollit anim id est snow.</p>
5757

5858
<script src="../node_modules/jquery/dist/jquery.js" ></script>
59-
<script src="../node_modules/plugin/dist/plugin.js" ></script>
59+
<script src="../node_modules/mobify-plugin/dist/plugin.js" ></script>
6060
<script src="../node_modules/velocity-animate/velocity.js"></script>
6161
<script src="../src/js/bellows.js" ></script>
6262
<script src="assets/js/setup-bellows.js"></script>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"mobify-code-style": "^2.4.2",
2727
"mocha": "1.14.0",
2828
"node-sass-import-once": "1.2.0",
29-
"plugin": "git+https://github.com/mobify/plugin.git#3.1.0",
3029
"requirejs": "2.2.0",
3130
"requirejs-glob": "git+https://github.com/mobify/requirejs-glob.git",
3231
"text": "requirejs/text"
@@ -55,6 +54,7 @@
5554
"author": "Mobify",
5655
"dependencies": {
5756
"jquery": "2.2.2",
58-
"velocity-animate": "1.2.3"
57+
"velocity-animate": "1.2.3",
58+
"mobify-plugin": "4.0.0"
5959
}
6060
}

tests/runner/sandbox-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require.config({
77
'velocity': 'node_modules/velocity-animate/velocity',
88
'chai': 'node_modules/chai/chai',
99
'mocha': 'node_modules/mocha/mocha',
10-
'plugin': 'node_modules/plugin/dist/plugin',
10+
'plugin': 'node_modules/mobify-plugin/dist/plugin',
1111
'bellows': 'dist/bellows'
1212
},
1313
'shim': {

0 commit comments

Comments
 (0)