mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12342] Use prop() instead of attr() for boolean properties
PHPBB3-12342
This commit is contained in:
parent
5a3d4109bb
commit
0f3e6ca676
4 changed files with 5 additions and 5 deletions
|
@ -431,14 +431,14 @@ phpbb.timezoneSwitchDate = function(keepSelection) {
|
||||||
|
|
||||||
if ($("#timezone > optgroup[label='" + $('#tz_date').val() + "'] > option").size() === 1) {
|
if ($("#timezone > optgroup[label='" + $('#tz_date').val() + "'] > option").size() === 1) {
|
||||||
// If there is only one timezone for the selected date, we just select that automatically.
|
// If there is only one timezone for the selected date, we just select that automatically.
|
||||||
$("#timezone > optgroup[label='" + $('#tz_date').val() + "'] > option:first").attr('selected', true);
|
$("#timezone > optgroup[label='" + $('#tz_date').val() + "'] > option:first").prop('selected', true);
|
||||||
keepSelection = true;
|
keepSelection = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof keepSelection !== 'undefined' && !keepSelection) {
|
if (typeof keepSelection !== 'undefined' && !keepSelection) {
|
||||||
var timezoneOptions = $('#timezone > optgroup option');
|
var timezoneOptions = $('#timezone > optgroup option');
|
||||||
if (timezoneOptions.filter(':selected').length <= 0) {
|
if (timezoneOptions.filter(':selected').length <= 0) {
|
||||||
timezoneOptions.filter(':first').attr('selected', true);
|
timezoneOptions.filter(':first').prop('selected', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -373,7 +373,7 @@ $('#quick-mod-select').change(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#delete_permanent').click(function () {
|
$('#delete_permanent').click(function () {
|
||||||
if ($(this).attr('checked')) {
|
if ($(this).prop('checked')) {
|
||||||
$('#delete_reason').hide();
|
$('#delete_reason').hide();
|
||||||
} else {
|
} else {
|
||||||
$('#delete_reason').show();
|
$('#delete_reason').show();
|
||||||
|
|
|
@ -115,7 +115,7 @@
|
||||||
<input type="hidden" name="form_time" value="{FORM_TIME}" />
|
<input type="hidden" name="form_time" value="{FORM_TIME}" />
|
||||||
{S_HIDDEN_FIELDS}
|
{S_HIDDEN_FIELDS}
|
||||||
<input type="submit" name="submit" value="<!-- IF MODE == 'notification_options' -->{L_SUBMIT}<!-- ELSE -->{L_MARK_READ}<!-- ENDIF -->" class="button1" />
|
<input type="submit" name="submit" value="<!-- IF MODE == 'notification_options' -->{L_SUBMIT}<!-- ELSE -->{L_MARK_READ}<!-- ENDIF -->" class="button1" />
|
||||||
<div><a href="#" onclick="$('#ucp input:checkbox').attr('checked', true); return false;">{L_MARK_ALL}</a> • <a href="#" onclick="$('#ucp input:checkbox').attr('checked', false); return false;">{L_UNMARK_ALL}</a></div>
|
<div><a href="#" onclick="$('#ucp input:checkbox').prop('checked', true); return false;">{L_MARK_ALL}</a> • <a href="#" onclick="$('#ucp input:checkbox').prop('checked', false); return false;">{L_UNMARK_ALL}</a></div>
|
||||||
{S_FORM_TOKEN}
|
{S_FORM_TOKEN}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
|
@ -131,7 +131,7 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<!-- IF .notifications -->
|
<!-- IF .notifications -->
|
||||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_END}; padding-top: 2px;"><b><a href="#" onclick="$('#ucp input:checkbox').attr('checked', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="$('#ucp input:checkbox').attr('checked', false); return false;">{L_UNMARK_ALL}</a></b></div>
|
<div class="gensmall" style="float: {S_CONTENT_FLOW_END}; padding-top: 2px;"><b><a href="#" onclick="$('#ucp input:checkbox').prop('checked', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="$('#ucp input:checkbox').prop('checked', false); return false;">{L_UNMARK_ALL}</a></b></div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Add table
Reference in a new issue