/[meteor]/trunk/public_html/koha.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/public_html/koha.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 82 by dpavlin, Sun Mar 29 01:29:13 2009 UTC revision 83 by dpavlin, Sun Mar 29 10:52:20 2009 UTC
# Line 2  Line 2 
2    
3  function update_selected( by ) {  function update_selected( by ) {
4          var e = $('#clear_selection');          var e = $('#clear_selection');
5          e.attr( 'value', parseInt( e.attr('value') ) + by );          var v = parseInt( e.attr('value') );
6          console.debug('selected', e.attr('value'));          e.attr( 'value', v + by );
7            console.debug('selected', v);
8            return v;
9  }  }
10    
11  function read_tag( id ) {  function read_tag( id ) {
# Line 15  function read_tag( id ) { Line 17  function read_tag( id ) {
17                  console.error('element', id, 'allready exists', item);                  console.error('element', id, 'allready exists', item);
18                  item.addClass('in_range');                  item.addClass('in_range');
19          } else {          } else {
20                  $('#koha').append( '<div class="item in_range loading" id="item'+id+'">Loading item '+id+' from Koha</div>' )                  var tabindex = update_selected(+1) + 1;
21    
22                    $('#koha').append( '<div class="item in_range loading" id="item'+id+'" tabindex='+tabindex+'>Loading item '+id+' from Koha</div>' )
23    
24                  var item = $('#item'+id);                  var item = $('#item'+id);
25    
# Line 27  function read_tag( id ) { Line 31  function read_tag( id ) {
31    
32                                  item.removeClass('loading');                                  item.removeClass('loading');
33    
                                 update_selected(+1);  
   
34                                  item.click( function() {                                  item.click( function() {
35                                          // remove selected item                                          // remove selected item
36                                          this.fadeOut('slow', function() {                                          this.fadeOut('slow', function() {

Legend:
Removed from v.82  
changed lines
  Added in v.83

  ViewVC Help
Powered by ViewVC 1.1.26