Home
last modified time | relevance | path

Searched refs:on (Results 1 – 25 of 752) sorted by relevance

12345678910>>...31

/template/templar/js/
H A Dbootstrap-dropdown.js31 var $el = $(element).on('click.dropdown.data-api', this.toggle)
32 $('html').on('click.dropdown.data-api', function () {
159 .on('click.dropdown.data-api', clearMenus)
160 .on('click.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
161 .on('click.dropdown-menu', function (e) { e.stopPropagation() })
162 .on('click.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
163 .on('keydown.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
H A Dbootstrap-typeahead.js175 .on('focus', $.proxy(this.focus, this))
176 .on('blur', $.proxy(this.blur, this))
177 .on('keypress', $.proxy(this.keypress, this))
178 .on('keyup', $.proxy(this.keyup, this))
181 this.$element.on('keydown', $.proxy(this.keydown, this))
185 .on('click', $.proxy(this.click, this))
186 .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
187 .on('mouseleave', 'li', $.proxy(this.mouseleave, this))
329 $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
/template/bootstrap3/
H A Dscript.js121 jQuery(window).on('hashchange', function () {
139 // Fix accesskey issue on dropdown menu
186 // Scrolling animation (on TOC and FootNotes)
187 jQuery('#dw__toc a, #dw__toc_menu a, a.fn_top, a.fn_bot').on('click', function (e) {
372 jQuery('#cookieDismiss').on('click', function () {
426 $dw_page_icons.find('.share-twitter').on('click', function () {
430 $dw_page_icons.find('.share-linkedin').on('click', function () {
434 $dw_page_icons.find('.share-facebook').on('click', function () {
438 $dw_page_icons.find('.share-pinterest').on('click', function () {
442 $dw_page_icons.find('.share-telegram').on('clic
[all...]
/template/bootstrap3/assets/typeahead/
H A Dbootstrap3-typeahead.min.js1 (function(a,b){if(typeof module!=="undefined"&&module.exports){module.exports=b(require("jquery"))}else{if(typeof define==="function"&&define.amd){define(["jquery"],function(c){return b(c)})}else{b(a.jQuery)}}}(this,function(b){var c=function(e,d){this.$element=b(e);this.options=b.extend({},c.defaults,d);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.select=this.options.select||this.select;this.autoSelect=typeof this.options.autoSelect=="boolean"?this.options.autoSelect:true;this.highlighter=this.options.highlighter||this.highlighter;this.render=this.options.render||this.render;this.updater=this.options.updater||this.updater;this.displayText=this.options.displayText||this.displayText;this.itemLink=this.options.itemLink||this.itemLink;this.itemTitle=this.options.itemTitle||this.itemTitle;this.followLinkOnSelect=this.options.followLinkOnSelect||this.followLinkOnSelect;this.source=this.options.source;this.delay=this.options.delay;this.theme=this.options.theme&&this.options.themes&&this.options.themes[this.options.theme]||c.defaults.themes[c.defaults.theme];this.$menu=b(this.options.menu||this.theme.menu);this.$appendTo=this.options.appendTo?b(this.options.appendTo):null;this.fitToElement=typeof this.options.fitToElement=="boolean"?this.options.fitToElement:false;this.shown=false;this.listen();this.showHintOnFocus=typeof this.options.showHintOnFocus=="boolean"||this.options.showHintOnFocus==="all"?this.options.showHintOnFocus:false;this.afterSelect=this.options.afterSelect;this.afterEmptySelect=this.options.afterEmptySelect;this.addItem=false;this.value=this.$element.val()||this.$element.text();this.keyPressed=false;this.focused=this.$element.is(":focus");this.changeInputOnSelect=this.options.changeInputOnSelect||this.changeInputOnSelect;this.changeInputOnMove=this.options.changeInputOnMove||this.changeInputOnMove;this.openLinkInNewTab=this.options.openLinkInNewTab||this.openLinkInNewTab;this.selectOnBlur=this.options.selectOnBlur||this.selectOnBlur;this.showCategoryHeader=this.options.showCategoryHeader||this.showCategoryHeader};c.prototype={constructor:c,setDefault:function(e){this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change();this.afterSelect(d)}return this.hide()},select:function(){var e=this.$menu.find(".active").data("value");this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}if(this.changeInputOnSelect){this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change()}if(this.followLinkOnSelect&&this.itemLink(e)){if(this.openLinkInNewTab){window.open(this.itemLink(e),"_blank")}else{document.location=this.itemLink(e)}this.afterSelect(d)}else{if(this.followLinkOnSelect&&!this.itemLink(e)){this.afterEmptySelect(d)}else{this.afterSelect(d)}}}else{this.afterEmptySelect()}return this.hide()},updater:function(d){return d},setSource:function(d){this.source=d},show:function(){var k=b.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});var h=typeof this.options.scrollHeight=="function"?this.options.scrollHeight.call():this.options.scrollHeight;var g;if(this.shown){g=this.$menu}else{if(this.$appendTo){g=this.$menu.appendTo(this.$appendTo);this.hasSameParent=this.$appendTo.is(this.$element.parent())}else{g=this.$menu.insertAfter(this.$element);this.hasSameParent=true}}if(!this.hasSameParent){g.css("position","fixed");var j=this.$element.offset();k.top=j.top;k.left=j.left}var e=b(g).parent().hasClass("dropup");var d=e?"auto":(k.top+k.height+h);var f=b(g).hasClass("dropdown-menu-right");var i=f?"auto":k.left;g.css({top:d,left:i}).show();if(this.options.fitToElement===true){g.css("width",this.$element.outerWidth()+"px")}this.shown=true;return this},hide:function(){this.$menu.hide();this.shown=false;return this},lookup:function(d){if(typeof(d)!="undefined"&&d!==null){this.query=d}else{this.query=this.$element.val()}if(this.query.length<this.options.minLength&&!this.options.showHintOnFocus){return this.shown?this.hide():this}var e=b.proxy(function(){if(b.isFunction(this.source)&&this.source.length===3){this.source(this.query,b.proxy(this.process,this),b.proxy(this.process,this))}else{if(b.isFunction(this.source)){this.source(this.query,b.proxy(this.process,this))}else{if(this.source){this.process(this.source)}}}},this);clearTimeout(this.lookupWorker);this.lookupWorker=setTimeout(e,this.delay)},process:function(d){var e=this;d=b.grep(d,function(f){return e.matcher(f)});d=this.sorter(d);if(!d.length&&!this.options.addItem){return this.shown?this.hide():this}if(d.length>0){this.$element.data("active",d[0])}else{this.$element.data("active",null)}if(this.options.items!="all"){d=d.slice(0,this.options.items)}if(this.options.addItem){d.push(this.options.addItem)}return this.render(d).show()},matcher:function(e){var d=this.displayText(e);return ~d.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(f){var g=[];var e=[];var d=[];var i;while((i=f.shift())){var h=this.displayText(i);if(!h.toLowerCase().indexOf(this.query.toLowerCase())){g.push(i)}else{if(~h.indexOf(this.query)){e.push(i)}else{d.push(i)}}}return g.concat(e,d)},highlighter:function(h){var l=this.query;if(l===""){return h}var j=h.match(/(>)([^<]*)(<)/g);var k=[];var e=[];var f;if(j&&j.length){for(f=0;f<j.length;++f){if(j[f].length>2){k.push(j[f])}}}else{k=[];k.push(h)}l=l.replace((/[\(\)\/\.\*\+\?\[\]]/g),function(i){return"\\"+i});var g=new RegExp(l,"g");var d;for(f=0;f<k.length;++f){d=k[f].match(g);if(d&&d.length>0){e.push(k[f])}}for(f=0;f<e.length;++f){h=h.replace(e[f],e[f].replace(g,"<strong>$&</strong>"))}return h},render:function(e){var g=this;var d=this;var f=false;var i=[];var h=g.options.separator;b.each(e,function(j,k){if(j>0&&k[h]!==e[j-1][h]){i.push({__type:"divider"})}if(g.options.showCategoryHeader){if(k[h]&&(j===0||k[h]!==e[j-1][h])){i.push({__type:"category",name:k[h]})}}i.push(k)});e=b(i).map(function(j,k){if((k.__type||false)=="category"){return b(g.options.headerHtml||g.theme.headerHtml).text(k.name)[0]}if((k.__type||false)=="divider"){return b(g.options.headerDivider||g.theme.headerDivider)[0]}var l=d.displayText(k);j=b(g.options.item||g.theme.item).data("value",k);j.find(g.options.itemContentSelector||g.theme.itemContentSelector).addBack(g.options.itemContentSelector||g.theme.itemContentSelector).html(g.highlighter(l,k));if(g.options.followLinkOnSelect){j.find("a").attr("href",d.itemLink(k))}j.find("a").attr("title",d.itemTitle(k));if(l==d.$element.val()){j.addClass("active");d.$element.data("active",k);f=true}return j[0]});if(this.autoSelect&&!f){e.filter(":not(.dropdown-header)").first().addClass("active");this.$element.data("active",e.first().data("value"))}this.$menu.html(e);return this},displayText:function(d){return typeof d!=="undefined"&&typeof d.name!="undefined"?d.name:d},itemLink:function(d){return null},itemTitle:function(d){return null},next:function(f){var g=this.$menu.find(".active").removeClass("active");var e=g.next();if(!e.length){e=b(this.$menu.find(b(this.options.item||this.theme.item).prop("tagName"))[0])}while(e.hasClass("divider")||e.hasClass("dropdown-header")){e=e.next()}e.addClass("active");var d=this.updater(e.data("value"));if(this.changeInputOnMove){this.$element.val(this.displayText(d)||d)}},prev:function(f){var g=this.$menu.find(".active").removeClass("active");var e=g.prev();if(!e.length){e=this.$menu.find(b(this.options.item||this.theme.item).prop("tagName")).last()}while(e.hasClass("divider")||e.hasClass("dropdown-header")){e=e.prev()}e.addClass("active");var d=this.updater(e.data("value"));if(this.changeInputOnMove){this.$element.val(this.displayText(d)||d)}},listen:function(){this.$element.on("focus.bootstrap3Typeahead",b.proxy(this.focus,this)).on("blur.bootstrap3Typeahead",b.proxy(this.blur,this)).on("keypress.bootstrap3Typeahead",b.proxy(this.keypress,this)).on("propertychange.bootstrap3Typeahead input.bootstrap3Typeahead",b.proxy(this.input,this)).on("keyup.bootstrap3Typeahead",b.proxy(this.keyup,this));if(this.eventSupported("keydown")){this.$element.on("keydown.bootstrap3Typeahead",b.proxy(this.keydown,this))}var d=b(this.options.item||this.theme.item).prop("tagName");if("ontouchstart" in document.documentElement&&"onmousemove" in document.documentElement){this.$menu.on("touchstart",d,b.proxy(this.touchstart,this)).on("touchend",d,b.proxy(this.click,this)).on("click",b.proxy(this.click,this)).on("mouseente
[all...]
/template/breeze/js/
H A Dgumby.min.js1on(Gumby.click,function(t){t.preventDefault(),i.$input.is("[disabled]")||(i.$el.hasClass("checked"…
/template/breeze/bower_components/gumby/js/libs/
H A Dgumby.min.js1on(Gumby.click,function(t){t.preventDefault(),i.$input.is("[disabled]")||(i.$el.hasClass("checked"…
/template/breeze/bower_components/gumby/
H A Dgumby.min.js1on(Gumby.click,function(t){t.preventDefault(),i.$input.is("[disabled]")||(i.$el.hasClass("checked"…
/template/breeze/bower_components/gumby/js/libs/ui/
H A Dgumby.navbar.js23 this.$el.find('li:not(:has(.dropdown)) a').on(Gumby.click, function() {
31 .on(Gumby.click, this.toggleDropdown)
33 .on('swiperight', this.openLink);
40 .on(Gumby.click, this.openLink);
44 this.$el.find('li:not(:has(.dropdown)) a[href]').on(Gumby.click, this.openLink);
H A Dgumby.toggleswitch.js12 this.on = '';
26 this.on = '';
44 this.$el.on(this.on, function(e) {
49 }).on('gumby.trigger', function() {
53 }).on('gumby.initialize', function() {
62 this.on = Gumby.selectAttr.apply(this.$el, ['on']) || Gumby.click;
/template/khum1/
H A DREADME.md5 This template is based on default Dokuwiki template (version available on 2020-04-09).
14 Khum1 is designed to integrate certain plugins in particular. They have special css or hack on the …
16 * [Children pages](https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages) to have tab on top a…
29 Refer to [template](https://www.dokuwiki.org/template) on how to install and use templates in Dokuw…
34 If you see a bug, please create an issue on [my depot](https://git.khaganat.net/khaganat/web/dokuwi…
46 Change on this template :
49 * Help of a lot of people on Khaganat to test, find good idea, explain how code work.
53 Dokuwiki is on GPL, so this template too. More easy and legal.
/template/typowiki/typowiki/scss/
H A D_sanitize.scss29 * 4. Remove the grey highlight on links in iOS (opinionated).
31 * IE on Windows Phone and in iOS.
58 * Correct the font size and margin on `h1` elements within `section` and
71 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
83 * Remove the margin on nested lists in Edge 18- and IE.
112 * Remove the list style on navigation lists in all browsers (opinionated).
135 * Remove the gray background on active links in IE 10.
184 * Change the alignment on media elements in all browsers (opinionated).
215 * Remove the border on iframes in all browsers (opinionated).
223 * Remove the border on image
[all...]
/template/mikio/assets/
H A Dmikio-typeahead.js16 * distributed under the License is distributed on an 'AS IS' BASIS,
157 // We cannot rely on the element position, need to position relative to the window
428 .on('focus.bootstrap3Typeahead', jQuery.proxy(this.focus, this))
429 .on('blur.bootstrap3Typeahead', jQuery.proxy(this.blur, this))
430 .on('keypress.bootstrap3Typeahead', jQuery.proxy(this.keypress, this))
431 .on('propertychange.bootstrap3Typeahead input.bootstrap3Typeahead', jQuery.proxy(this.input, this))
432 .on('keyup.bootstrap3Typeahead', jQuery.proxy(this.keyup, this));
435 this.$element.on('keydown.bootstrap3Typeahead', jQuery.proxy(this.keydown, this));
441 .on('touchstart', itemTagName, jQuery.proxy(this.touchstart, this))
442 .on('touchen
[all...]
/template/twentyfifteen/
H A Dscript.js83 .on('scroll.twentyfifteen', scroll)
84 .on('load.twentyfifteen', chattr)
85 .on('resize.twentyfifteen', function() {
90 sidebar.on('click.twentyfifteen', 'button', function() {resize(); scroll();});
105 button.on('click.twentyfifteen', function() {
/template/parallax/lib/bootstrap/js/
H A Dbootstrap.min.js18 d(e).on("click", c, this.close)
57 d(document).on("click.alert.data-api", c, b.prototype.close)
112 …this.options.pause == "hover" && this.$element.on("mouseenter", b.proxy(this.pause, this)).on("mou…
336 f("html").on("click.dropdown.data-api", function () {
471 c(document).on("focusin.modal", function (f) {
479 this.$element.on("keyup.dismiss.modal", function (f) {
813 c(window).on("load", function () {
977 …this.$element.on("blur", b.proxy(this.blur, this)).on("keypress", b.proxy(this.keypress, this)).on
981 …this.$menu.on("click", b.proxy(this.click, this)).on("mouseenter", "li", b.proxy(this.mouseenter, …
1086 …this.$window = c(window).on("scroll.affix.data-api", c.proxy(this.checkPosition, this)).on("click.…
[all …]
H A Dbootstrap.js88 $(el).on('click', dismiss, this.close)
120 $parent.on($.support.transition.end, removeElement) :
294 .on('mouseenter', $.proxy(this.pause, this))
295 .on('mouseleave', $.proxy(this.cycle, this))
874 $(document).on('focusin.modal', function (e) {
1492 $(window).on('load', function () {
1786 .on('blur', $.proxy(this.blur, this))
1787 .on('keypress', $.proxy(this.keypress, this))
1788 .on('keyup', $.proxy(this.keyup, this))
1795 .on('click', $.proxy(this.click, this))
[all …]
/template/docnavwiki/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/darkblue/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/kkh/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/bootie/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/notes/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover or focus show all items
/template/dokuwikitplacc/dokuwikiBee/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/dokuwikibee/dokuwikibee/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/congrid/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/byu_2017_theme/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items
/template/bs4simple/css/
H A Dpagetools.less10 /* give space to the right so the tools won't disappear on smaller screens */
31 /* on same vertical level as first headline, because .page has 2em padding */
45 /* add transparent border to prevent jumping when proper border is added on hover */
58 … /* add transparent border to prevent jumping when proper border is added on focus */
80 // on interaction show the full item
112 // on hover show all items

12345678910>>...31