Skip to content

Commit

Permalink
Updated component to version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Jul 6, 2015
1 parent 3ace761 commit b0faa31
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
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": "2.0.0"
"version": "2.0.1"
}
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.0 - Popup
* # Semantic UI 2.0.1 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -688,7 +688,7 @@ module.exports = function(parameters) {
popup = calculations.popup;
parent = calculations.parent;

if(target.top === 0 && target.left === 0) {
if(target.width === 0 && target.height === 0) {
module.debug('Popup target is hidden, no action taken');
return false;
}
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-popup',
summary : 'Semantic UI - Popup: Single component release',
version : '2.0.0',
version : '2.0.1',
git : 'git://github.com/Semantic-Org/UI-Popup.git',
});

Expand Down
2 changes: 1 addition & 1 deletion popup.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.0 - Popup
* # Semantic UI 2.0.1 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
4 changes: 2 additions & 2 deletions popup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.0 - Popup
* # Semantic UI 2.0.1 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -687,7 +687,7 @@ $.fn.popup = function(parameters) {
popup = calculations.popup;
parent = calculations.parent;

if(target.top === 0 && target.left === 0) {
if(target.width === 0 && target.height === 0) {
module.debug('Popup target is hidden, no action taken');
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion popup.min.css

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

4 changes: 2 additions & 2 deletions popup.min.js

Large diffs are not rendered by default.

0 comments on commit b0faa31

Please sign in to comment.