$.fn.extend({
treed: function() {
return this.each(function() {
var tree = $(this);
tree.addClass("tree");
tree.find('li').has("ul").each(function () {
var branch = $(this);
branch.prepend("<i class='indicator glyphicon glyphicon-plus-sign'></i>");
branch.addClass('branch');
branch.on('click', function (e) {
if (this == e.target) {
var icon = $(this).children('i:first');
icon.toggleClass("glyphicon-minus-sign glyphicon-plus-sign");
$(this).children().children().toggle();
}
})
branch.children().children().toggle();
});
$('.branch .indicator').on('click',function(){
$(this).closest('li').click();
});
$('.branch a').on('click',function(e){
$(this).closest('li').click();
e.preventDefault();
});
$('.branch button').on('click',function(e){
$(this).closest('li').click();
e.preventDefault();
});
});
}
});