-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix $active[0] undefined bug with tabs
- Loading branch information
Showing
5 changed files
with
63 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,18 @@ | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
gantrim:[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] |
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,29 @@ | ||
# ABOUT | ||
Materialize CSS Packaged for meteor and using stylus. This packages allows you to use all variables available in the SCSS materialize package with the clean syntax of stylus. | ||
# INSTALL | ||
Please make sure to remove the base meteor materialize package. This package has everything you need. | ||
``` | ||
$ meteor add stylus | ||
$ meteor add gantrim:materialize-stylus | ||
``` | ||
|
||
# STYLUS | ||
After you have added this package, create a main .styl file and add the following | ||
``` | ||
@import '{gantrim:materialize-stylus}/lib/styl/components/_mixins.import' | ||
@import '{gantrim:materialize-stylus}/lib/styl/components/_color.import' | ||
@import '{gantrim:materialize-stylus}/lib/styl/components/_variables.import' | ||
// add your own variables/overrides here | ||
@import '{gantrim:materialize-stylus}/lib/styl/materialize-components' | ||
``` | ||
|
||
# CONTRIBUTING | ||
Bug fixes and pull requests welcome. At the very least, if you notice an issue please open an issue on github. | ||
|
||
# CREDIT/THANKS | ||
[Materialize](https://github.com/Dogfalo/materialize) | ||
|
||
[meteor-materialize-scss](https://github.com/poetic/meteor-materialize-scss) | ||
|
||
[Sass2Stylus](https://github.com/mojotech/sass2stylus) |
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
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 |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
Package.describe({ | ||
name: 'gantrim:materialize-stylus', // http://atmospherejs.com/materialize/materialize | ||
summary: 'Materialize (official): A modern responsive front-end framework based on Material Design', | ||
version: '1.1.3', | ||
version: '1.1.8', | ||
git: 'https://github.com/gantrim/meteor-materialize-stylus' | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom('METEOR@1.2.1'); | ||
api.versionsFrom('METEOR@1.6.0.1'); | ||
|
||
api.use('[email protected].14'); | ||
api.use('[email protected].13'); | ||
api.use('jquery', 'client'); | ||
api.imply('jquery', 'client'); | ||
|
||
|