Skip to content

Commit

Permalink
Updated component to version 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Apr 16, 2015
1 parent 463d30f commit 1f39ad0
Show file tree
Hide file tree
Showing 9 changed files with 15 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.12.0 - April 13, 2015

- **Popup** - Popup no longer produces a console error when it cannot find an adequate position in the browser viewport.

### Version 1.11.0 - March 3, 2015

- **Popup** - Added `exclusive` parameter to automatically close other popups on open
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.7"
"version": "1.12.0"
}
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.11.7 - Popup
* # Semantic UI 1.12.0 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -761,7 +761,7 @@ module.exports = function(parameters) {
}
else if(!settings.lastResort) {
module.debug('Popup could not find a position in view', $popup);
module.error(error.cannotPlace, element);
// module.error(error.cannotPlace, element);
module.remove.attempts();
module.remove.loading();
module.reset();
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 : '1.11.7',
version : '1.12.0',
git : 'git://github.com/Semantic-Org/UI-Popup.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-popup",
"version": "1.11.7",
"version": "1.12.0",
"title": "Semantic UI - Popup",
"description": "Single component release of popup",
"homepage": "http://www.semantic-ui.com",
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 1.11.7 - Popup
* # Semantic UI 1.12.0 - 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 1.11.7 - Popup
* # Semantic UI 1.12.0 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -760,7 +760,7 @@ $.fn.popup = function(parameters) {
}
else if(!settings.lastResort) {
module.debug('Popup could not find a position in view', $popup);
module.error(error.cannotPlace, element);
// module.error(error.cannotPlace, element);
module.remove.attempts();
module.remove.loading();
module.reset();
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 1f39ad0

Please sign in to comment.