Skip to content

Commit

Permalink
release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoryak committed Nov 20, 2015
1 parent d8b5dba commit 39cd1e4
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jquery.floatThead v1.3.1
jquery.floatThead v1.3.2
=================
[![woot](http://giant.gfycat.com/AnyGloriousAlpaca.gif "or just click")](http://mkoryak.github.io/floatThead/)

Expand All @@ -18,7 +18,7 @@ bower install floatThead
npm install floatthead
```
#### Download code
[Latest Release (zip)](https://github.com/mkoryak/floatThead/archive/v1.3.1.zip)
[Latest Release (zip)](https://github.com/mkoryak/floatThead/archive/v1.3.2.zip)

#### Via CDN
[http://cdnjs.com/libraries/floatthead/](http://cdnjs.com/libraries/floatthead/)
Expand Down Expand Up @@ -91,6 +91,13 @@ Watch for it.

Change Log
----------
### 1.3.2
- https://github.com/mkoryak/floatThead/issues/264 - header alignments messed up when table within a floated container (when using position:absolute)
- hide more stuff from screen readers that should be hidden
- https://github.com/mkoryak/floatThead/issues/255 - added `reflowed` event, see docs
- removed underscore usage from non-slim build


### 1.3.1
- allow 'useAbsolutePositioning', 'scrollingTop' and 'scrollingBottom' to be used, but yell about it via console.error

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.floatThead-slim.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @preserve jQuery.floatThead 1.3.2dev - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @preserve jQuery.floatThead 1.3.2 - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @license MIT

/* @author Misha Koryak
Expand Down Expand Up @@ -818,7 +818,7 @@

if (canObserveMutations) {
var mutationElement = null;
if(_.isFunction(opts.autoReflow)){
if(util.isFunction(opts.autoReflow)){
mutationElement = opts.autoReflow($table, $scrollContainer)
}
if(!mutationElement) {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.floatThead-slim.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery.floatThead.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @preserve jQuery.floatThead 1.3.2dev - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @preserve jQuery.floatThead 1.3.2 - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @license MIT

/* @author Misha Koryak
Expand Down Expand Up @@ -818,7 +818,7 @@

if (canObserveMutations) {
var mutationElement = null;
if(_.isFunction(opts.autoReflow)){
if(util.isFunction(opts.autoReflow)){
mutationElement = opts.autoReflow($table, $scrollContainer)
}
if(!mutationElement) {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.floatThead.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jquery.floatThead.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @preserve jQuery.floatThead 1.3.2dev - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @preserve jQuery.floatThead 1.3.2 - http://mkoryak.github.io/floatThead/ - Copyright (c) 2012 - 2015 Misha Koryak
// @license MIT

/* @author Misha Koryak
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "floatthead",
"version": "1.3.1",
"version": "1.3.2",
"description": "fixed table header plugin that works",
"main": "dist/jquery.floatThead.js",
"dependencies": {},
Expand Down

0 comments on commit 39cd1e4

Please sign in to comment.