mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
12 lines
506 B
JavaScript
12 lines
506 B
JavaScript
|
jQuery(document).ready(function($) {
|
||
|
$( '#select404page' ).change(function() {
|
||
|
$( '#edit_404_page, #test_404_page' ).prop( 'disabled', !( $( '#select404page' ).val() == $( '#404page_current_value').text() != 0 ) );
|
||
|
});
|
||
|
$( '#select404page' ).trigger( 'change' );
|
||
|
$( '#edit_404_page' ).click(function() {
|
||
|
window.location.href = $( '#404page_edit_link' ).text();
|
||
|
});
|
||
|
$( '#test_404_page' ).click(function() {
|
||
|
window.location.href = $( '#404page_test_link' ).text();
|
||
|
});
|
||
|
});
|