Lines 143-149
$(document).ready(function() {
Link Here
|
143 |
$('#issues-table-load-immediately').prop('checked', true); |
143 |
$('#issues-table-load-immediately').prop('checked', true); |
144 |
} |
144 |
} |
145 |
$('#issues-table-load-immediately').on( "change", function(){ |
145 |
$('#issues-table-load-immediately').on( "change", function(){ |
146 |
$.cookie("issues-table-load-immediately-" + script, $(this).is(':checked')); |
146 |
$.cookie("issues-table-load-immediately-" + script, $(this).is(':checked'), { expires: 365 }); |
147 |
}); |
147 |
}); |
148 |
|
148 |
|
149 |
function LoadIssuesTable() { |
149 |
function LoadIssuesTable() { |
150 |
- |
|
|