Subversion Repositories SmartDukaan

Rev

Rev 5110 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5110 Rev 8182
Line 15... Line 15...
15
 
15
 
16
    $('.cancelButton').live('click', function() {
16
    $('.cancelButton').live('click', function() {
17
        $(this).parent().parent().siblings('.increaseAvailabilityButton').show();
17
        $(this).parent().parent().siblings('.increaseAvailabilityButton').show();
18
        $(this).parent().parent().hide();
18
        $(this).parent().parent().hide();
19
    });
19
    });
-
 
20
    
-
 
21
    $('.increaseHoldForm').hide();
-
 
22
    
-
 
23
    $('.increaseHoldButton').live('click', function() {
-
 
24
        $(this).hide();
-
 
25
        $(this).siblings('.increaseHoldForm').show();
-
 
26
    });
-
 
27
 
-
 
28
    $('.cancelHoldButton').live('click', function() {
-
 
29
        $(this).parent().parent().siblings('.increaseHoldButton').show();
-
 
30
        $(this).parent().parent().hide();
-
 
31
    });
20
});
32
});