Index: branches/wmf/1.18wmf1/extensions/Collection/js/collection.js |
— | — | @@ -151,8 +151,8 @@ |
152 | 152 | $('input.order').attr('disabled', 'disabled'); |
153 | 153 | return; |
154 | 154 | } else { |
155 | | - $('#downloadButton').attr('disabled', ''); |
156 | | - $('input.order').attr('disabled', ''); |
| 155 | + $('#downloadButton').removeAttr('disabled'); |
| 156 | + $('input.order').removeAttr('disabled'); |
157 | 157 | } |
158 | 158 | if (!$('#saveButton').length) { |
159 | 159 | return; |
— | — | @@ -165,14 +165,14 @@ |
166 | 166 | return; |
167 | 167 | } |
168 | 168 | } else if (!$('#personalCollTitle').length || $('#communityCollType:checked').val()) { |
169 | | - $('#communityCollTitle').attr('disabled', ''); |
| 169 | + $('#communityCollTitle').removeAttr('disabled'); |
170 | 170 | $('#personalCollTitle').attr('disabled', 'disabled'); |
171 | 171 | if (!$.trim($('#communityCollTitle').val())) { |
172 | 172 | $('#saveButton').attr('disabled', 'disabled'); |
173 | 173 | return; |
174 | 174 | } |
175 | 175 | } |
176 | | - $('#saveButton').attr('disabled', ''); |
| 176 | + $('#saveButton').removeAttr('disabled'); |
177 | 177 | } |
178 | 178 | |
179 | 179 | function make_sortable() { |
Property changes on: branches/wmf/1.18wmf1/extensions/Collection/js/collection.js |
___________________________________________________________________ |
Added: svn:mergeinfo |
180 | 180 | Merged /trunk/extensions/Collection/js/collection.js:r94376,98982 |