Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Glitchbone committed Apr 17, 2015
0 parents commit fe2b810
Show file tree
Hide file tree
Showing 16 changed files with 1,023 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
@@ -0,0 +1,13 @@
# ignore .DS_Store files and some other stuff
.DS_Store

.idea/
.tmproj

.sass-cache/

# ignore node_modules
node_modules/

# ignore bower_components
bower_components/
54 changes: 54 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,54 @@
module.exports = function(grunt) {

grunt.initConfig({
watch: {
sass: {
files: 'src/sass/*.scss',
tasks: ['compass', 'cssmin']
},
scripts: {
files: 'src/js/*.js',
tasks: ['copy', 'uglify']
}
},
compass: {
dist: {
options: {
sassDir: 'src/sass',
cssDir: 'dist',
outputStyle: 'expanded',
noLineComments: true
}
}
},
cssmin: {
dist: {
files: {
'dist/jquery.fatNav.min.css': 'dist/jquery.fatNav.css'
}
}
},
uglify: {
scripts: {
files: {
'dist/jquery.fatNav.min.js': ['src/js/jquery.fatNav.js']
}
}
},
copy: {
scripts: {
src: 'src/js/jquery.fatNav.js',
dest: 'dist/jquery.fatNav.js',
}
}
});

grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');

grunt.registerTask('default', ['uglify', 'copy', 'compass', 'cssmin', 'watch']);

};
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Adrien Glitchbone

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
36 changes: 36 additions & 0 deletions README.md
@@ -0,0 +1,36 @@
#jQuery fatNav

Chubby fullscreen menu with nice hamburger toggle

##Installation

Install via bower:

```sh
bower install fatNav
```

Or you can add jquery.fatNav.css and jquery.fatNav.js manually to your project

##Usage

See [demo](http://glitchbone.github.io/jquery-fatNav) for usage example

##Build

```sh
git clone https://github.com/Glitchbone/jquery-fatNav.git my_project
npm install
grunt
```

##Author

**Adrien Glitchbone**

+ [https://twitter.com/glitchbone](https://twitter.com/glitchbone)
+ [http://github.com/Glitchbone](http://github.com/Glitchbone)

##License

jQuery fatNav is available under the MIT license. See the [LICENSE](LICENSE) file for more information.

0 comments on commit fe2b810

Please sign in to comment.