Home
last modified time | relevance | path

Searched refs:render (Results 1 – 25 of 33) sorted by path

12

/template/a_new_day/js/
H A Dcontrols.js143 this.render();
148 this.render();
175 this.render();
194 render: function() { method in Autocompleter.Base
289 this.render();
H A Deffects.js274 this.render(1.0);
284 this.render(pos);
289 render: function(pos) { method in Effect.Base
335 effect.render(1.0);
/template/battlehorse/js/
H A Dcontrols.js143 this.render();
148 this.render();
175 this.render();
194 render: function() { method in Autocompleter.Base
289 this.render();
H A Deffects.js274 this.render(1.0);
284 this.render(pos);
289 render: function(pos) { method in Effect.Base
335 effect.render(1.0);
/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 (…) method in c
/template/comicslate/
H A Dscript.js14 Ya . Context . AdvManager . render ( {
/template/daily/css/
H A Dpure-min.css852 also have border and padding. This is done because some browsers don't render
/template/darkblue/
H A DLICENSE66 patents cannot be used to render the program non-free.
/template/khum1/
H A DLICENSE.md71 assures that patents cannot be used to render the program non-free.
/template/mikio/assets/
H A Dmikio-typeahead.js38 this.render = this.options.render || this.render;
245 return this.render(items).show();
311 render: function (items) {
330 render: function (items) { global() method in Typeahead
/template/monobook/static/css/
H A Dscreen_iehacks.css62 #border-left: 1px dashed __background__; /* invisible border triggers IE to render the stuff */
/template/notos/
H A Ddetail.php6 $TemplateController->render();
H A Dmain.php6 $TemplateController->render();
/template/parallax/lib/bootstrap/js/
H A Dbootstrap.js1733 return this.render(items.slice(0, this.options.items)).show()
1754 }, render: function (items) {
H A Dbootstrap.min.js932 return this.render(d.slice(0, this.options.items)).show()
954 }, render: function (d) {
/template/strap/bootstrap/4.4.1/
H A Dbootstrap.16col.min.css.map1 …\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size i…
/template/strap/bootstrap/4.5.0/
H A Dbootstrap.16col.min.css.map1 …\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size i…
/template/strap/bootstrap/5.0.1/
H A Dbootstrap.min.css.map1render odd when\n// these borders do not have the same color or if they are semi-transparent.\n// …
H A Dbootstrap.rtl.min.css.map1render odd when\n// these borders do not have the same color or if they are semi-transparent.\n// …
/template/strap/css/
H A Dheading.css14 /* Main (in the render page, preview, the preview page)
/template/templar/
H A DCOPYING66 patents cannot be used to render the program non-free.
H A DLICENSE66 patents cannot be used to render the program non-free.
/template/templar/js/
H A Dbootstrap-typeahead.js108 return this.render(items.slice(0, this.options.items)).show()
137 , render: function (items) {
/template/twigstarter/
H A DTemplateController.php58 public function render($vars = []) function in dokuwiki\\template\\twigstarter\\TemplateController
80 echo $this->twig->render($this->view . '.twig', $data);
H A Ddetail.php6 $TemplateController->render();

12