Lines Matching defs:options
29 var accordion = function ($parent, options) {
32 options: {},
41 hide: decision ? inner.options.showAllSelector : inner.options.hideAllSelector,
42 show: decision ? inner.options.hideAllSelector : inner.options.showAllSelector,
46 inner.$pannels = inner.options.parent.find(".panel-body-accordion");
48 inner.options.parent.find(".panel-heading-accordion").click(function (e) {
68 inner.options.parent.find(btn.hide).hide();
69 inner.options.parent.find(btn.show).show();
73 inner.options.parent.find(inner.options.showAllSelector).click(function (e) {
81 inner.options.parent.find(inner.options.hideAllSelector).show()
82 inner.options.parent.find(inner.options.showAllSelector).hide()
86 inner.options.parent.find(inner.options.hideAllSelector).click(function (e) {
94 inner.options.parent.find(inner.options.hideAllSelector).hide()
95 inner.options.parent.find(inner.options.showAllSelector).show()
101 inner.options.parent.find(btn.hide).hide();
102 inner.options.parent.find(btn.show).show();
108 var init = (function ($parent, options) {
111 inner.options = $.extend({}, {parent: $parent}, inner.defaults, options)
113 })($parent, options);
116 $.fn.accordion = function (options) {
118 options = options || {}
119 new accordion($(this), options);