names of people display immediately on aspect#manage page
This commit is contained in:
parent
af917557f6
commit
ff13cad116
2 changed files with 5 additions and 0 deletions
|
|
@ -25,8 +25,12 @@ $(function() {
|
|||
revert: true,
|
||||
start: function(event,ui){
|
||||
$(this).children("img").animate({'height':80, 'width':80, 'opacity':0.8},200);
|
||||
$(this).children("img").tipsy("hide");
|
||||
$(".draggable_info").fadeIn(100);
|
||||
},
|
||||
drag: function(event,ui){
|
||||
$(this).children("img").tipsy("hide"); //ensure this is hidden
|
||||
},
|
||||
stop: function(event,ui){
|
||||
$(this).children("img").animate({'height':70, 'width':70, 'opacity':1},200);
|
||||
$(".draggable_info").fadeOut(100);
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ $(document).ready(function(){
|
|||
|
||||
$("img", "#left_pane").tipsy({live:true});
|
||||
$(".add_aspect_button", "#aspect_nav").tipsy({gravity:'w'});
|
||||
$(".person img", ".dropzone").tipsy({live:true});
|
||||
|
||||
});//end document ready
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue