Skip to content

Commit

Permalink
Update on 2016-10-04 01:28:10
Browse files Browse the repository at this point in the history
  • Loading branch information
nayzawoo committed Oct 3, 2016
1 parent 05ddc44 commit 837584d
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 255 deletions.
10 changes: 10 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ module.exports = function(grunt) {
}
},

copy: {
img: {
expand: true,
cwd: 'src/img',
src: ['**'],
dest: 'dist/img'
}
},

// Lint definitions
jshint: {
files: ["src/js/jquery.accordion.js", "test/**/*"],
Expand Down Expand Up @@ -75,6 +84,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-gh-pages");
grunt.loadNpmTasks("grunt-contrib-copy");

grunt.registerTask("travis", ["jshint"]);
grunt.registerTask("lint", ["jshint"]);
Expand Down
1 change: 0 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "jq-accordion",
"version": "1.0.0",
"license": "MIT",
"authors": [
"Nay Zaw Oo <nayzawoo.me@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="description" content="The missing responsive, CSS powered (jQuery fallback) accordion plugin.">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="demo.css">
<link rel="stylesheet" type="text/css" href="dist/css/jquery.accordion.css">

</head>
Expand Down
4 changes: 2 additions & 2 deletions dist/css/jquery.accordion.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jq-accordion - v1.0.0
* jq-accordion - vv1.0.0
* Responsive, CSS powered, jQuery accordion plugin
* http://nayzawoo.github.com/jquery-accordion
*
Expand Down Expand Up @@ -46,7 +46,7 @@
color: #444;
height: 15px;
width: 24px;
background: url('../images/down.png') center center no-repeat;
background: url('../img/down.png') center center no-repeat;
background-size: 50%;
}

Expand Down
Binary file added dist/img/down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/img/up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dist/js/jquery.accordion.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jq-accordion - v1.0.0
* jq-accordion - vv1.0.0
* Responsive, CSS powered, jQuery accordion plugin
* http://nayzawoo.github.com/jquery-accordion
*
Expand Down
2 changes: 1 addition & 1 deletion dist/js/jquery.accordion.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

247 changes: 0 additions & 247 deletions index.html

This file was deleted.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jq-accordion",
"version": "1.0.0",
"version": "v1.0.0",
"description": "Responsive, CSS powered, jQuery accordion plugin",
"keywords": [
"accordion",
Expand Down Expand Up @@ -35,6 +35,7 @@
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/css/jquery.accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
color: #444;
height: 15px;
width: 24px;
background: url('../images/down.png') center center no-repeat;
background: url('../img/down.png') center center no-repeat;
background-size: 50%;
}

Expand Down
Binary file added src/img/down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 837584d

Please sign in to comment.