Lines Matching refs:find

28         $img_wrap.find('img').addClass(['img-', img_data.imgShape].join(''));
58 $nav_wrap.find('ul:first').addClass(nav_class.join(' '));
60 var $nav = $nav_wrap.find('.nav');
62 $nav.find('div.li > *').unwrap();
63 $nav.find('li').attr('role', 'presentation');
64 $nav.find('.curid').parent('li').addClass('active');
65 $nav.find('.curid').contents().unwrap(); // Unwrap for Hogfater release
68 $nav.find('li ul')
73 $nav.find('.dropdown div.li').replaceWith(function () {
79 $nav.find('li.dropdown').contents().filter(function () {
83 $nav.find('.dropdown-toggle').append(' <span class="caret"/>');
86 if ($nav_wrap.find('.tab-pane').length) {
88 if (!$nav_wrap.find('.tab-content').length) {
89 $nav_wrap.find('.tab-pane').wrapAll(jQuery('<div class="tab-content"/>'));
92 $nav.find('a').attr('data-toggle', 'tab').attr('role', 'tab');
95 $nav_wrap.find('.tab-content .tab-pane').addClass('fade');
98 $nav.find('a:first').tab('show');
102 var $icon_links = $nav.find('li .dw-icons + a');
125 $btn_link = $btn_wrap.find('a'),
191 var $icon_links = $list_wrap.find('li .dw-icons + a');
202 $list_wrap.find('div.li').contents().unwrap();
203 $list_wrap.find('ul').addClass('list-group');
204 $list_wrap.find('ul > li').addClass('list-group-item');
206 if ($list_wrap.find('a').length) {
208 $list_wrap.find('a').parent().each(function () {
216 var $link = $list.find('a');
220 $list.find('p').appendTo($link);
226 $list_wrap.find('a').parent().contents().unwrap();
227 $list_wrap.find('ul a').parent().contents().unwrap();
229 $list_wrap.find('a').addClass('list-group-item');
230 $list_wrap.find('a.curid').removeClass('curid').addClass('active');
247 $accordion.find('.panel').each(function () {
252 …$panel.find('.panel-heading').wrapInner('<a role="button" data-toggle="collapse" data-parent="#' +…
253 …$panel.find('.panel-body').wrap('<div id="' + panel_id + '" class="panel-collapse collapse" role="…
259 if ($accordion.find('.panel-collapse').length > 1 && !is_collapsed) {
260 $accordion.find('.panel-collapse').first().addClass('in');
271 $images = $carousel.find('img'),
272 $slides = $carousel.find('.bs-wrap-slide'),
273 $caption = $carousel.find('.bs-wrap-caption'),
274 $indicators = $carousel.find('ol');
293 $carousel.find('.carousel-control').attr('href', '#' + carousel_id);
299 $carousel.find('.item').first().addClass('active');
300 $indicators.find('li').first().addClass('active');
309 $panel_body = $panel.find('.panel-body'),
310 $panel_heading = $panel.find('.panel-heading'),
311 $first_title = $panel_body.find('> h4:first');