Skip to content

Commit

Permalink
Updated component to version 2.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Nov 6, 2015
1 parent a388cf0 commit 5c0c606
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
6 changes: 5 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Version 2.1.6 - Nov 6, 2015

- **Checkbox/Dropdown/Search** - Fixed issue where dropdown/checkbox `change` events were not bubbling. (Dispatched events were swapped to use native `document.creatEvent` in `2.1.5` unfortunately the flag to bubble events was mistakenly off.)

### Version 2.1.5 - Nov 1, 2015

- **Checkbox/Dropdown/Search** - Fixed issue where using `.trigger('change')` would not fire native `change` event. Only triggering event handlers attached with jQuery #3108
- **Checkbox/Dropdown/Search** - Fixed issue where using `.trigger('change')` would not fire native `change` event. Only triggering event handlers attached with jQuery [#3108](https://github.com/Semantic-Org/Semantic-UI/issues/3108)

#### Features

Expand Down
2 changes: 1 addition & 1 deletion checkbox.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.1.5 - Checkbox
* # Semantic UI 2.1.6 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
4 changes: 2 additions & 2 deletions checkbox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.1.5 - Checkbox
* # Semantic UI 2.1.6 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -508,7 +508,7 @@ $.fn.checkbox = function(parameters) {
;
if(inputElement) {
module.verbose('Triggering native change event');
events.initEvent('change', false, true);
events.initEvent('change', true, false);
inputElement.dispatchEvent(events);
}
}
Expand Down
2 changes: 1 addition & 1 deletion checkbox.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 checkbox.min.js

Large diffs are not rendered by default.

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.1.5"
"version": "2.1.6"
}
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.1.5 - Checkbox
* # Semantic UI 2.1.6 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -509,7 +509,7 @@ module.exports = function(parameters) {
;
if(inputElement) {
module.verbose('Triggering native change event');
events.initEvent('change', false, true);
events.initEvent('change', true, false);
inputElement.dispatchEvent(events);
}
}
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-checkbox',
summary : 'Semantic UI - Checkbox: Single component release',
version : '2.1.5',
version : '2.1.6',
git : 'git://github.com/Semantic-Org/UI-Checkbox.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-checkbox",
"version": "2.1.5",
"version": "2.1.6",
"title": "Semantic UI - Checkbox",
"description": "Single component release of checkbox",
"homepage": "http://www.semantic-ui.com",
Expand Down

0 comments on commit 5c0c606

Please sign in to comment.