Преглед на файлове

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


Зареждане…
Отказ
Запис