29 lines
909 B
JavaScript
29 lines
909 B
JavaScript
|
|
(function($) {
|
||
|
|
$.fn.panels = function() {
|
||
|
|
$this = $(this);
|
||
|
|
$(this).find('.panel-body').hide();
|
||
|
|
$(this).find('.panel-title').prepend('<div class="pull-right collapse-button"><span class="glyphicon glyphicon-menu-hamburger"></span></div>');
|
||
|
|
$(this).each(function() {
|
||
|
|
$(this).find('.collapse-button').css('cursor','pointer').click(function() {
|
||
|
|
$this.find('.panel-body').slideToggle('fast');
|
||
|
|
});
|
||
|
|
});
|
||
|
|
};
|
||
|
|
})(jQuery);
|
||
|
|
|
||
|
|
$(document).ready(function() {
|
||
|
|
$('.collapse-panel').panels();
|
||
|
|
if ($('.container').width() < 940){
|
||
|
|
$('.panel-body').hide();
|
||
|
|
} else {
|
||
|
|
$('.panel-body').show();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
//$(window).resize(function() {
|
||
|
|
// if ($('.container').width() < 940){
|
||
|
|
// $('.panel-body').hide();
|
||
|
|
// } else {
|
||
|
|
// $('.panel-body').show();
|
||
|
|
// }
|
||
|
|
//});
|