Skip to content

Instantly share code, notes, and snippets.

View AyumuKasuga's full-sized avatar
🤔
🤔

Andrei Kostakov AyumuKasuga

🤔
🤔
View GitHub Profile
@AyumuKasuga
AyumuKasuga / list_filter_collapse.js
Last active January 27, 2016 15:10 — forked from jjdelc/list_filter_collapse.js
Collapse list_filter in Django admin
;(function($){
ListFilterCollapsePrototype = {
bindToggle: function(){
var that = this;
this.$filterEl.click(function(){
that.$filterList.slideToggle();
});
},
init: function(filterEl) {
this.$filterEl = $(filterEl).css('cursor', 'pointer');