Home | History | Annotate | Download | only in js

Lines Matching full:toggle

64   // init the fullscreen toggle click event
1164 function toggle(obj, slide) {
1175 $(".toggle-img", li).attr("title", "hide pages");
1180 $(".toggle-img", li).attr("title", "show pages");
1186 $(".toggle-list").each(
1188 $("div:first", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>");
1195 function hideNestedItems(list, toggle) {
1206 $(".more,.less",$(toggle)).toggle();
1258 $("#nav-panels").toggle();
1259 $("#panel-link").toggle();
1260 $("#nav-tree").toggle();
1261 $("#tree-link").toggle();
1274 $("#nav-panels").toggle();
1275 $("#panel-link").toggle();
1276 $("#nav-tree").toggle();
1277 $("#tree-link").toggle();
1382 var div = $(obj).closest(".toggle-content");
1383 var toggleMe = $(".toggle-content-toggleme:eq(0)",div);
1386 $(".toggle-content-text:eq(0)", obj).toggle();
1388 $(".toggle-content-img:eq(0)", div).attr("title", "hide").attr("src", toRoot
1392 $(".toggle-content-text:eq(0)", obj).toggle();
1394 div.find(".toggle-content").removeClass("open").addClass("closed")
1395 .find(".toggle-content-toggleme").hide();
1396 $(".toggle-content-img", div).attr("title", "show").attr("src", toRoot
2990 // toggle shut on the first try. --joeo@android.com
3358 /* TOGGLE INHERITED MEMBERS */
3360 /* Toggle an inherited class (arrow toggle)
3363 * 'null' to simply toggle.
3387 /* Toggle all inherited classes in a single table (e.g. all inherited methods)
3390 * 'null' to simply toggle.
3410 /* Toggle all inherited members in the class (link in the class title)
3413 var a = $("#toggleAllClassInherited"); // get toggle link from class title
3414 var toggles = $(".toggle-all", $("#body-content"));
3431 var toggles = $(".toggle-all", $("#body-content"));
3777 // Toggle remaining cards
3778 cardParent = $('<div class="dac-toggle-content clearfix">').appendTo($widget);
3779 $widget.addClass('dac-toggle');
3782 $('<div class="dac-section-link" data-toggle="section">')
3783 .append('<span class="dac-toggle-expand">More<i class="dac-sprite dac-auto-unfold-more"></i></span>')
3784 .append('<span class="dac-toggle-collapse">Less<i class="dac-sprite dac-auto-unfold-less"></i></span>')
4409 * Upgrades h2s on the page to have a rule and be toggle-able on mobile.
4474 '<i class="dac-toggle-expand dac-sprite dac-expand-more-black"></i>' +
4475 '<i class="dac-toggle-collapse dac-sprite dac-expand-less-black"></i>' +
4477 .attr('data-toggle', 'section');
4480 $section = $section.wrapAll('<div class="dac-toggle dac-mobile">').parent();
4481 $contents.wrapAll('<div class="dac-toggle-content"><div>'); // extra div used for max-height calculation.
4507 * Toggle Floating Label state.
4860 this.el.on('modal-toggle', this.toggle_.bind(this));
4890 this.modal.trigger('modal-toggle');
4917 $('[data-modal-toggle]').each(function() {
4927 * Toggle the visabilty of the mobile navigation.
4956 * The actual toggle logic.
4979 $('[data-dac-toggle-nav]').each(function() {
5220 function Toggle(el) {
5221 $(el).on('click.dac.togglesection', this.toggle);
5224 Toggle.prototype.toggle = function() {
5230 transitionMaxHeight($parent.find('.dac-toggle-content'), !isExpanded);
5246 $parent = $parent && $parent.length ? $parent : $this.closest('.dac-toggle');
5288 if (!data) {$this.data('dac.togglesection', (data = new Toggle(this)));}
5295 .on('click.toggle', '[data-toggle="section"]', Toggle.prototype.toggle);