Skip to content

Commit

Permalink
New version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fatrex committed Nov 19, 2014
1 parent 5c29cdc commit 75e0ec8
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 55 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Yeah! You can see a live demo here: http://ryuk87.github.io/jquery-goup/
| `location` | On which side the button will be shown ("left" or "right") | String | right |
| `locationOffset` | How many pixel the button is distant from the edge of the screen, based on the location setted | Integer | 20 |
| `bottomOffset` | How many pixel the button is distant from the bottom edge of the screen | Integer | 10 |
| `containerSize` | The width and height of the button (minimum is 20) | Integer | 40 |
| `containerRadius` | Let you transform a square in a circle (yeah, it's magic!) | Integer | 10 |
| `containerClass` | The class name given to the button container | String | goup-container |
| `arrowClass` | The class name given to the arrow container | String | goup-arrow |
Expand All @@ -35,6 +36,9 @@ Yeah! You can see a live demo here: http://ryuk87.github.io/jquery-goup/
| `titleAsTextClass`| The class name given to the title text | String | goup-text |

### Changelog
#### v1.0.0 (11-19-2014)
* Added button size

#### v0.7.0 (11-19-2014)
* Fixed multiple click bug (issue #4)
* Some code changes
Expand Down Expand Up @@ -79,4 +83,4 @@ jQuery GoUp! is dual licensed under the [GPL](http://www.gnu.org/licenses/gpl.ht

Logo kindly created by [Emilia Balitro](http://www.behance.net/EmiliaBalitro)

If you like my work, offer me a beer/coffee/cappuccino on [Gittip](https://www.gittip.com/Ryuk87/)
If you like my work, offer me a beer/coffee/cappuccino on [Gratipay](https://gratipay.com/Ryuk87/)
49 changes: 30 additions & 19 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,32 @@
{
"name": "jquery-goup",
"version": "0.7.0",
"homepage": "https://github.com/Ryuk87/jquery-goup",
"description": "A simple jQuery plugin that let users go back to the top of a web page.",
"main": "./src/jquery.goup.js",
"keywords": [
"jquery",
"goup",
"scrolltop"
],
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
"name": "jquery-goup",
"version": "1.0.0",
"homepage": "https://github.com/Ryuk87/jquery-goup",
"description": "A simple jQuery plugin that let users go back to the top of a web page.",
"main": "./src/jquery.goup.js",
"keywords": [
"jquery-plugin",
"scroll",
"scrolltop",
"backtotop",
"scrolltotop"
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type":"GPL",
"url":"http://www.gnu.org/licenses/gpl.html"
}
],
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
33 changes: 0 additions & 33 deletions goup.jquery.json

This file was deleted.

4 changes: 2 additions & 2 deletions jquery.goup.min.js

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

34 changes: 34 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "jquery-goup",
"version": "1.0.0",
"description": "A simple jQuery plugin that let users go back to the top of a web page.",
"author": "Daniele Lenares <[email protected]>",
"main": "src/jquery.goup.js",
"repository": {
"type": "git",
"url": "https://github.com/Ryuk87/jquery-goup"
},
"bugs": {
"url": "https://github.com/Ryuk87/jquery-goup/issues"
},
"keywords": [
"jquery-plugin",
"scroll",
"scrolltop",
"backtotop",
"scrolltotop"
],
"dependencies": {
"jquery": ">=1.5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type":"GPL",
"url":"http://www.gnu.org/licenses/gpl.html"
}
],
}

0 comments on commit 75e0ec8

Please sign in to comment.