This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-47
lines changed Expand file tree Collapse file tree 5 files changed +7
-47
lines changed Original file line number Diff line number Diff line change @@ -131,9 +131,9 @@ exports.setDisabled = function (disabled) {
131
131
132
132
// ----------------------------------------------------------------------------
133
133
134
- exports . input = function ( input ) {
134
+ exports . form = function ( input ) {
135
135
return function ( ) {
136
- return input . input ;
136
+ return input . form ;
137
137
} ;
138
138
} ;
139
139
@@ -591,46 +591,6 @@ exports["stepDown'"] = function (n) {
591
591
592
592
// ----------------------------------------------------------------------------
593
593
594
- exports . length = function ( input ) {
595
- return function ( ) {
596
- return input . length ;
597
- } ;
598
- } ;
599
-
600
- exports . setLength = function ( length ) {
601
- return function ( input ) {
602
- return function ( ) {
603
- input . length = length ;
604
- } ;
605
- } ;
606
- } ;
607
-
608
- // ----------------------------------------------------------------------------
609
-
610
- exports . selectedOptions = function ( input ) {
611
- return function ( ) {
612
- return input . selectedOptions ;
613
- } ;
614
- } ;
615
-
616
- // ----------------------------------------------------------------------------
617
-
618
- exports . selectedIndex = function ( input ) {
619
- return function ( ) {
620
- return input . selectedIndex ;
621
- } ;
622
- } ;
623
-
624
- exports . setSelectedIndex = function ( selectedIndex ) {
625
- return function ( input ) {
626
- return function ( ) {
627
- input . selectedIndex = selectedIndex ;
628
- } ;
629
- } ;
630
- } ;
631
-
632
- // ----------------------------------------------------------------------------
633
-
634
594
exports . value = function ( input ) {
635
595
return function ( ) {
636
596
return input . value ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ exports.name = function (map) {
9
9
} ;
10
10
} ;
11
11
12
- exports . setDisabled = function ( name ) {
12
+ exports . setName = function ( name ) {
13
13
return function ( map ) {
14
14
return function ( ) {
15
15
map . name = name ;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ exports.high = function (meter) {
73
73
} ;
74
74
} ;
75
75
76
- exports . setLow = function ( high ) {
76
+ exports . setHigh = function ( high ) {
77
77
return function ( meter ) {
78
78
return function ( ) {
79
79
meter . high = high ;
@@ -89,7 +89,7 @@ exports.optimum = function (meter) {
89
89
} ;
90
90
} ;
91
91
92
- exports . setLow = function ( optimum ) {
92
+ exports . setOptimum = function ( optimum ) {
93
93
return function ( meter ) {
94
94
return function ( ) {
95
95
meter . optimum = optimum ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ exports.colSpan = function (cell) {
9
9
} ;
10
10
} ;
11
11
12
- exports . setSpan = function ( colSpan ) {
12
+ exports . setColSpan = function ( colSpan ) {
13
13
return function ( cell ) {
14
14
return function ( ) {
15
15
cell . colSpan = colSpan ;
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ exports.lookupNamespaceURI = function (ns) {
124
124
} ;
125
125
} ;
126
126
127
- exports . lookupNamespaceURI = function ( ns ) {
127
+ exports . isDefaultNamespace = function ( ns ) {
128
128
return function ( node ) {
129
129
return function ( ) {
130
130
return node . isDefaultNamespace ( ns ) ;
You can’t perform that action at this time.
0 commit comments