Lines 14-21
$(document).ready(function(){
Link Here
|
14 |
$(".checkboxed").unCheckCheckboxes(); |
14 |
$(".checkboxed").unCheckCheckboxes(); |
15 |
return false; |
15 |
return false; |
16 |
}); |
16 |
}); |
17 |
[% IF ( offset ) %]$("#markseen").before("<input type=\"submit\" value=\"<< Mark seen and continue\" id=\"markback\" />");[% END %] |
17 |
[% IF ( offset ) %]$("#markseen").before("<input type=\"submit\" value=\"<< " + _("Mark seen and continue") + "\" id=\"markback\" /> ");[% END %] |
18 |
[% IF ( nextoffset ) %]$("#markseen").after("<input type=\"submit\" id=\"marknext\" value=\"Mark seen and continue >>\" />");[% END %] |
18 |
[% IF ( nextoffset ) %]$("#markseen").after(" <input type=\"submit\" id=\"marknext\" value=\"" + _("Mark seen and continue") + " >>\" />");[% END %] |
19 |
$("#markback").click(function(){ |
19 |
$("#markback").click(function(){ |
20 |
$(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]"); |
20 |
$(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]"); |
21 |
return true; |
21 |
return true; |
22 |
- |
|
|