Browse Source

fixes #116, issue with checkbox input not being selected properly

Former-commit-id: a0d1a9f0b4
Former-commit-id: be3ec05f39
pull/258/head
jlukic 11 years ago
parent
commit
4e7129a150
9 changed files with 9 additions and 11 deletions
  1. 2
      build/less/modules/checkbox.js
  2. 2
      build/minified/modules/checkbox.js
  3. 2
      build/uncompressed/modules/checkbox.js
  4. 5
      node/src/documents/introduction/definitions.html.eco
  5. 1
      node/src/documents/introduction/types.html.eco
  6. 2
      node/src/files/build/less/modules/checkbox.js
  7. 2
      node/src/files/build/minified/modules/checkbox.js
  8. 2
      node/src/files/build/uncompressed/modules/checkbox.js
  9. 2
      src/modules/checkbox.js

2
build/less/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

2
build/minified/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

2
build/uncompressed/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

5
node/src/documents/introduction/definitions.html.eco

@ -123,13 +123,12 @@ type : 'UI Introduction'
<ul class="ui list"> <ul class="ui list">
<li>Popups</li> <li>Popups</li>
<li>Modals</li> <li>Modals</li>
<li>Chatrooms</li>
<li>Calendar Pickers</li>
<li>Chat Rooms</li>
</ul> </ul>
<h2 class="ui dividing header">UI Views</h2> <h2 class="ui dividing header">UI Views</h2>
<p>UI Views are common ways to structure types of content so that it can be understood more easily. A view's definition in semantic only describes the content which typically occupies the view.</p>
<p>UI Views are common ways to present content so that it can be understood more easily. A view's definition in semantic only describes the content which typically occupies the view.</p>
<h3 class="ui header">Examples of UI views:</h3> <h3 class="ui header">Examples of UI views:</h3>
<ul class="ui list"> <ul class="ui list">

1
node/src/documents/introduction/types.html.eco

@ -1,7 +1,6 @@
--- ---
layout : 'default' layout : 'default'
css : 'types' css : 'types'
status : 'draft'
title : 'Types' title : 'Types'
description : 'A type is an mutually exclusive change to an element' description : 'A type is an mutually exclusive change to an element'

2
node/src/files/build/less/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

2
node/src/files/build/minified/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

2
node/src/files/build/uncompressed/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

2
src/modules/checkbox.js

@ -334,7 +334,7 @@ $.fn.checkbox.settings = {
}, },
selector : { selector : {
input : 'input',
input : 'input[type=checkbox]',
label : 'label' label : 'label'
}, },

Loading…
Cancel
Save