Skip to content

Commit

Permalink
Version 0.5.1
Browse files Browse the repository at this point in the history
Bugfix: location of title as text was setted wrong
  • Loading branch information
fatrex committed May 10, 2014
1 parent d04eeea commit 90887a1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,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
#### v0.5.1 (05-10-2014)
* Bugfix: location of title as text was setted wrong

#### v0.5.0 (05-10-2014)
* Added the option to transform the hover title to a real text (positioned under the button).

Expand Down
2 changes: 1 addition & 1 deletion goup.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"backtotop",
"scrolltotop"
],
"version": "0.5.0",
"version": "0.5.1",
"author": {
"name": "Daniele Lenares",
"url": "https://github.com/Ryuk87"
Expand Down
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.

4 changes: 2 additions & 2 deletions src/jquery.goup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version 0.5.0
* Version 0.5.1
*
*/
(function ( $ ) {
Expand Down Expand Up @@ -110,7 +110,7 @@
.css('width',80)
.css('height','auto')
.css('text-align','center')
.css('right',0);
.css(location,locationOffset - 20);
var containerNewBottom = $(textContainer).height() + 10;
$(container).css('bottom', '+='+containerNewBottom+'px');
}
Expand Down

0 comments on commit 90887a1

Please sign in to comment.