attr() zu prop() geändert
Bernd Wurst

Bernd Wurst commited on 2014-02-08 13:51:31
Zeige 1 geänderte Dateien mit 16 Einfügungen und 16 Löschungen.

... ...
@@ -32,7 +32,7 @@
32 32
 
33 33
     $clone.find('input:first-of-type').val('');
34 34
     $clone.find('select:first-of-type')
35
-          .find('option:first-of-type').attr('selected', true);
35
+          .find('option:first-of-type').prop('selected', true);
36 36
     $clone.find('.warning').text('');
37 37
     $clone.find('.warning').hide();
38 38
     
... ...
@@ -48,7 +48,7 @@
48 48
     input = div.find('input:first');
49 49
     input.val('');
50 50
     select = div.find('select:first');
51
-    select.find('option:first').attr('selected', true);
51
+    select.find('option:first').prop('selected', true);
52 52
     if ($('div.vmail-forward').length > 1) {
53 53
       div.remove();
54 54
     }
... ...
@@ -129,23 +129,23 @@ function checkForwardCallback( result ) {
129 129
     return;
130 130
   }
131 131
   if (type == 'critical') {
132
-    element.find('select option[value="delete"]').attr('selected', true);
133
-    element.find('select option[value="none"]').attr('disabled', true);
134
-    element.find('select option[value="tag"]').attr('disabled', true);
135
-    element.find('select option[value="delete"]').attr('disabled', false);
132
+    element.find('select option[value="delete"]').prop('selected', true);
133
+    element.find('select option[value="none"]').prop('disabled', true);
134
+    element.find('select option[value="tag"]').prop('disabled', true);
135
+    element.find('select option[value="delete"]').prop('disabled', false);
136 136
     element.find('.warning').text('Weiterleitungen zu einigen großen E-Mail-Providern dürfen nur mit aktiviertem Spamfilter eingerichtet werden.');
137 137
     element.find('.warning').show()
138 138
   } else if (type == 'local') {
139
-    //element.find('select option[value="none"]').attr('selected', true);
140
-    element.find('select option[value="none"]').attr('disabled', false);
141
-    element.find('select option[value="tag"]').attr('disabled', false);
142
-    element.find('select option[value="delete"]').attr('disabled', false);
139
+    //element.find('select option[value="none"]').prop('selected', true);
140
+    element.find('select option[value="none"]').prop('disabled', false);
141
+    element.find('select option[value="tag"]').prop('disabled', false);
142
+    element.find('select option[value="delete"]').prop('disabled', false);
143 143
     element.find('.warning').hide()
144 144
   } else {
145
-    //element.find('select option[value="delete"]').attr('selected', true);
146
-    element.find('select option[value="none"]').attr('disabled', false);
147
-    element.find('select option[value="tag"]').attr('disabled', false);
148
-    element.find('select option[value="delete"]').attr('disabled', false);
145
+    //element.find('select option[value="delete"]').prop('selected', true);
146
+    element.find('select option[value="none"]').prop('disabled', false);
147
+    element.find('select option[value="tag"]').prop('disabled', false);
148
+    element.find('select option[value="delete"]').prop('disabled', false);
149 149
     element.find('.warning').hide()
150 150
   }
151 151
   $('#submit').prop('disabled', false);
... ...
@@ -214,14 +214,14 @@ $(document).ready(function(){
214 214
 
215 215
   $('#ar_startdate').datepicker();
216 216
   $('#ar_startdate').change(function () {
217
-    $('#ar_valid_from_date').attr('checked', true)
217
+    $('#ar_valid_from_date').prop('checked', true)
218 218
     $('#ar_enddate').datepicker("option", "minDate", $('#ar_startdate').val());
219 219
     });
220 220
 
221 221
   $('#ar_enddate').datepicker();
222 222
   $('#ar_enddate').datepicker("option", "minDate", $('#ar_startdate').val());
223 223
   $('#ar_enddate').change(function () {
224
-    $('#ar_valid_until_date').attr('checked', true)
224
+    $('#ar_valid_until_date').prop('checked', true)
225 225
     });
226 226
 });
227 227
 
228 228