Skip to content

Commit

Permalink
Updated component to version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Aug 22, 2016
1 parent 5cf7786 commit 5e1c159
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 11 deletions.
6 changes: 6 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 2.2.3 - August 21, 2016

- **Popup/Menu** - Fixed issue where popup would not appear correctly when nested in menu in some ways.
- **Popup** - Fixed issue where `observeChanges: false` setting in popup would not prevent mutation observers
- **Popup** - Fixed popup in menu example

### Version 2.2.0 - June 26, 2016

- **All UI** - Added new setting `silent` to all modules which allows you to disable all console output including errors. This can be useful for preventing known errors, like a popup which cannot place itself on screen, or `sticky` content which initializes before it is visible [#3713](https://github.com/Semantic-Org/Semantic-UI/issues/3713)
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": "2.2.2"
"version": "2.2.3"
}
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.2 - Popup
* # Semantic UI 2.2.3 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -89,7 +89,9 @@ module.exports = function(parameters) {
if(!module.exists() && settings.preserve) {
module.create();
}
module.observeChanges();
if(settings.observeChanges) {
module.observeChanges();
}
module.instantiate();
},

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.2.2',
version : '2.2.3',
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": "2.2.2",
"version": "2.2.3",
"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 2.2.2 - Popup
* # Semantic UI 2.2.3 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
6 changes: 4 additions & 2 deletions popup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.2 - Popup
* # Semantic UI 2.2.3 - Popup
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -88,7 +88,9 @@ $.fn.popup = function(parameters) {
if(!module.exists() && settings.preserve) {
module.create();
}
module.observeChanges();
if(settings.observeChanges) {
module.observeChanges();
}
module.instantiate();
},

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 5e1c159

Please sign in to comment.