ソースを参照

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


読み込み中…
キャンセル
保存