-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from aaronroberson/master
Add support for scrollbar and wrapperClass
- Loading branch information
Showing
5 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
aaronroberson:[email protected] | ||
angular:[email protected]_1 | ||
[email protected] | ||
swiper:[email protected] | ||
[email protected] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
var packageName = 'aaronroberson:angular-swiper'; | ||
var where = 'client'; | ||
var version = '0.3.1'; | ||
var summary = 'Angular directive for iDangero.us Swiper re-packaged for Meteor.'; | ||
var gitLink = 'https://github.com/aaronroberson/angular-swiper'; | ||
var documentationFile = 'README.md'; | ||
|
||
// Meta-data | ||
Package.describe({ | ||
name: packageName, | ||
version: version, | ||
summary: summary, | ||
git: gitLink, | ||
documentation: documentationFile | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom(['[email protected]', '[email protected]']); | ||
|
||
api.use('angular:[email protected]', where); | ||
api.use('swiper:[email protected]', where); | ||
|
||
api.addFiles('dist/angular-swiper.js', where); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters