Browse Source

spelling: misspelled

pull/4067/head
Josh Soref 8 years ago
parent
commit
ea3c4aa832
4 changed files with 4 additions and 4 deletions
  1. 2
      RELEASE-NOTES.md
  2. 2
      dist/components/checkbox.js
  3. 2
      dist/semantic.js
  4. 2
      src/definitions/modules/checkbox.js

2
RELEASE-NOTES.md

@ -157,7 +157,7 @@
- **Menu** - Fixed `1px` offset when `attached segment` follows `tabular menu` (max of 2 consecutive segments) [#3479](https://github.com/Semantic-Org/Semantic-UI/issues/3479)
- **Header** - `sub header` used inside a header now correctly forces `block` styling [#3020](https://github.com/Semantic-Org/Semantic-UI/issues/3020)
- **Popup** - Fixed `is visible`, `is animating`, and `is fluid` to always return `true/false` and not the DOM element. [#2781](https://github.com/Semantic-Org/Semantic-UI/issues/2781)
- **Popup** - Fixed issue with `onEnable` callback being defined with name `onEnabled` and `onDisable` with `onDisabled` in default settings, causing an error. To preserve backwards compatibility, the mispelled callback name has been left, but the bug has been fixed. [#3148](https://github.com/Semantic-Org/Semantic-UI/issues/3148)
- **Popup** - Fixed issue with `onEnable` callback being defined with name `onEnabled` and `onDisable` with `onDisabled` in default settings, causing an error. To preserve backwards compatibility, the misspelled callback name has been left, but the bug has been fixed. [#3148](https://github.com/Semantic-Org/Semantic-UI/issues/3148)
- **Search** - Search now correctly hides menu when an error message inside results is clicked. [#3039](https://github.com/Semantic-Org/Semantic-UI/issues/3039)
- **Sidebar** - Fixed css rule issue causing `very thin` sidebar to not work [#3300](https://github.com/Semantic-Org/Semantic-UI/issues/3300)
- **Sidebar** - Sidebar no longer includes `transform` rules on child elements, this was causing layout issues in some cases (for example dropdowns in sidebars) [#3306](https://github.com/Semantic-Org/Semantic-UI/issues/3306)

2
dist/components/checkbox.js

@ -803,7 +803,7 @@ $.fn.checkbox.settings = {
onEnable : function(){},
onDisable : function(){},
// preserve mispelled callbacks (will be removed in 3.0)
// preserve misspelled callbacks (will be removed in 3.0)
onEnabled : function(){},
onDisabled : function(){},

2
dist/semantic.js

@ -3468,7 +3468,7 @@ $.fn.checkbox.settings = {
onEnable : function(){},
onDisable : function(){},
// preserve mispelled callbacks (will be removed in 3.0)
// preserve misspelled callbacks (will be removed in 3.0)
onEnabled : function(){},
onDisabled : function(){},

2
src/definitions/modules/checkbox.js

@ -803,7 +803,7 @@ $.fn.checkbox.settings = {
onEnable : function(){},
onDisable : function(){},
// preserve mispelled callbacks (will be removed in 3.0)
// preserve misspelled callbacks (will be removed in 3.0)
onEnabled : function(){},
onDisabled : function(){},

Loading…
Cancel
Save