浏览代码

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]);
}


正在加载...
取消
保存