Skip to content

Commit

Permalink
Updated component to version 1.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Apr 13, 2015
1 parent e2ac711 commit 3e08922
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 11 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 1.11.7 - April 13, 2015

- **Sticky** - Fixes errant `console.log` statement appearing in source

### Version 1.11.0 - March 3, 2015

- **Sticky** - Fixed sticky position when page loads and content is below sticky content.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"framework"
],
"license": "MIT",
"version": "1.11.6"
"version": "1.11.7"
}
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.11.6 - Sticky
* # Semantic UI 1.11.7 - Sticky
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -399,7 +399,6 @@ module.exports = function(parameters) {

if( module.is.initialPosition() ) {
if(scroll.top >= context.bottom) {
console.log(scroll.top, context.bottom);
module.debug('Element bottom of container');
module.bindBottom();
}
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name : 'semantic:ui-sticky',
summary : 'Semantic UI - Sticky: Single component release',
version : '1.11.6',
version : '1.11.7',
git : 'git://github.com/Semantic-Org/UI-Sticky.git',
});

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": "semantic-ui-sticky",
"version": "1.11.6",
"version": "1.11.7",
"title": "Semantic UI - Sticky",
"description": "Single component release of sticky",
"homepage": "http://www.semantic-ui.com",
Expand Down
2 changes: 1 addition & 1 deletion sticky.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.11.6 - Sticky
* # Semantic UI 1.11.7 - Sticky
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
3 changes: 1 addition & 2 deletions sticky.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.11.6 - Sticky
* # Semantic UI 1.11.7 - Sticky
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -398,7 +398,6 @@ $.fn.sticky = function(parameters) {

if( module.is.initialPosition() ) {
if(scroll.top >= context.bottom) {
console.log(scroll.top, context.bottom);
module.debug('Element bottom of container');
module.bindBottom();
}
Expand Down
2 changes: 1 addition & 1 deletion sticky.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.11.6 - Sticky
* # Semantic UI 1.11.7 - Sticky
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
4 changes: 2 additions & 2 deletions sticky.min.js

Large diffs are not rendered by default.

0 comments on commit 3e08922

Please sign in to comment.