Skip to content

Commit

Permalink
Use Array.object instead of Array.fast
Browse files Browse the repository at this point in the history
  • Loading branch information
Inviz committed Jul 13, 2011
1 parent fba0ae2 commit 4d1f819
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ LSD.Native.Input = new Class({
}
},
inline: null,
pseudos: Array.fast('form-associated', 'value')
pseudos: Array.object('form-associated', 'value')
},

applyValue: function(value) {
Expand Down
2 changes: 1 addition & 1 deletion Source/Input/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LSD.Native.Input.Checkbox = new Class({
Extends: LSD.Native.Input,

options: {
pseudos: Array.fast('checkbox', 'clickable'),
pseudos: Array.object('checkbox', 'clickable'),
events: {
_checkbox: {
self: {
Expand Down
2 changes: 1 addition & 1 deletion Source/Input/Radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LSD.Native.Input.Radio = new Class({
Extends: LSD.Native.Input,

options: {
pseudos: Array.fast('radio', 'clickable'),
pseudos: Array.object('radio', 'clickable'),
events: {
_checkbox: {
self: {
Expand Down

0 comments on commit 4d1f819

Please sign in to comment.