소스 검색

show edit buttons only on mouse over

tags/v1.0.0
Rober Torkuhl 11 년 전
부모
커밋
9bbc0d19ce
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      pinry/static/js/pinry.js

+ 10
- 0
pinry/static/js/pinry.js 파일 보기

@@ -64,6 +64,16 @@ $(window).load(function() {
});
});

// Show edit-buttons only on mouse over
$('.pin').each(function(){
var thisPin = $(this);
thisPin.find('.editable').hide();
thisPin.unbind('hover');
thisPin.hover(function() {
thisPin.find('.editable').toggle();
});
});

$('.spinner').css('display', 'none');
blockContainer.css('height', colHeights.sort().slice(-1)[0]);
}


불러오는 중...
취소
저장