Advertisement
bhengh

SB admin passage fix: OLD syncBook

Jun 11th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function syncBook(s) {
  2. if (jQuery('#endbook')[0].value != "") return;
  3. var slc = jQuery('#startbook')[0].value;
  4. jQuery('.passage').each(function(i) {
  5. if (this == jQuery(s).parents('.passage')[0]) {
  6. jQuery('.end').each(function(j) {
  7. if (i == j) {
  8. jQuery("option[value='" + slc + "']", this).attr('selected', 'selected');
  9. }
  10. });
  11. }
  12. });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement