Home
last modified time | relevance | path

Searched refs:el (Results 76 – 100 of 306) sorted by relevance

12345678910>>...13

/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.vml.js450 var elproto = R.el;
740 el.style.cssText = cssDot;
753 el.appendChild(skew);
835 el.style.cssText = cssDot;
837 el.coordorigin = "0 0";
845 p.shape = el;
855 el.appendChild(o);
856 el.appendChild(path);
860 el.appendChild(skew);
902 el.transform("...");
[all …]
/plugin/bez/lib/jquery.datepair/
H A Ddatepair.js28 function triggerSimpleCustomEvent(el, eventName) { argument
30 jq(el).trigger(eventName);
34 el.dispatchEvent(event);
38 // el.classList not supported by < IE10
40 function hasClass(el, className) { argument
42 return jq(el).hasClass(className);
44 return el.classList.contains(className);
/plugin/ckgdoku/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc88 var ckgedit_getEID = function (dialog,page,el) {
110 var el = ckgedit_getEID(dialog,ui_el,which);
112 var el = ckgedit_getEID(dialog,'general','contents');
114 el.style.color = style_spec.get(which);
130 var el = ckgedit_getEID(dialog,'general','contents');
132 el.style.color = style_spec.get('fg');
133 el.style.backgroundColor = style_spec.get('bg');
135 el.innerHTML = replace_formats(selectedText);
348 el.focus();
349 el.select();
[all …]
/plugin/ckgedit/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc88 var ckgedit_getEID = function (dialog,page,el) {
110 var el = ckgedit_getEID(dialog,ui_el,which);
112 var el = ckgedit_getEID(dialog,'general','contents');
114 el.style.color = style_spec.get(which);
130 var el = ckgedit_getEID(dialog,'general','contents');
132 el.style.color = style_spec.get('fg');
133 el.style.backgroundColor = style_spec.get('bg');
135 el.innerHTML = replace_formats(selectedText);
348 el.focus();
349 el.select();
[all …]
/plugin/revealjs/plugin/search/
H A Dsearch.js94 while(arr.length && (el = arr[0])) {
95 el.parentNode.replaceChild(el.firstChild, el);
/plugin/mediatooltip/
H A Daction.php262 foreach($ar AS $el)
264 if(is_array($el)) {
265 while(!empty($el)) {
266 $inner = array_shift($el);
271 $value = $meta->getField($el);
/plugin/xcom/scripts/
H A Dxml.php49 foreach($elems as $el) {
50 if(strpos($el,':') !== false) {
51 list($key,$val) = explode (':' , $el);
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DOutput.SortAttr.txt
/plugin/sectiontoggle/
H A Dscript.js88 checkheader: function (el, index) { argument
89 var classes = el.getAttribute("class");
92 jQuery(el).toggleClass("st_closed st_opened");
93 jQuery(el).next().toggle();
/plugin/superacl/lang/es/
H A Dhelp.txt11 Consultar el [[doku>wiki:acl|official documentation on ACL]] puede ayudarle a entender completamen…
/plugin/runcommand/
H A Dscript.js22 function (el) { argument
46 function (el) { argument
/plugin/ckgdoku/lang/es/
H A Dlang.php48 $lang['btn_title_dw_fb'] = 'Guardar y cerrar el editor y cambiar al Explorador de Archivos DW…
49 $lang['btn_title_ckg_fb'] = 'Guardar y cerrar el editor y cambiar al Explorador de Archivos CK…
/plugin/tagfilter/script/select2/
H A Dselect2.js262 function focus($el) { argument
263 if ($el[0] === document.activeElement) return;
269 var el=$el[0], pos=$el.val().length, range;
271 $el.focus();
273 /* make sure el received focus so we do not error out when trying to manipulate the caret.
275 var isVisible = (el.offsetWidth > 0 || el.offsetHeight > 0);
276 if (isVisible && el
293 getCursorInfo(el) global() argument
2248 AnonymousFunctionbb87bed07b00(term, text, el) global() argument
2518 AnonymousFunctionbb87bed08e00(term, text, el) global() argument
[all...]
/plugin/block/
H A Dscript.js31 function show_text_entry(el) { argument
39 el.innerHTML=text;
/plugin/ckgedit/lang/es/
H A Dscayt.txt1 …erá **off** en lugar de **on**. Con **on** el contenido del editor es analizado por Scayt y envia…
/plugin/imapmarkers/
H A Djquery.imagemapster.js259 el,
265 if (el === '') {
268 arr[i] = cb ? cb(el) : el;
418 obj = elements[el];
428 el = lastKey;
924 setSelection(el);
1188 'v\\:' + el,
3539 el,
3568 el = elements[j];
3612 el = $(el);
[all …]
/plugin/ckgdoku/ckeditor/plugins/footnote/
H A Dplugin.js.unc60 var el = this.getContentElement( 'general', 'contents').getInputElement().$.id;
61 var ta = document.getElementById(el);
141 … var el = dialog.getContentElement( 'general', 'noteId').getInputElement().$.id;
142 var fn_id = document.getElementById(el).value;
145 … var el = dialog.getContentElement( 'general', 'contents').getInputElement().$.id;
146 var ta = document.getElementById(el);
/plugin/ckgedit/ckeditor/plugins/footnote/
H A Dplugin.js.unc60 var el = this.getContentElement( 'general', 'contents').getInputElement().$.id;
61 var ta = document.getElementById(el);
141 … var el = dialog.getContentElement( 'general', 'noteId').getInputElement().$.id;
142 var fn_id = document.getElementById(el).value;
145 … var el = dialog.getContentElement( 'general', 'contents').getInputElement().$.id;
146 var ta = document.getElementById(el);
/plugin/pgn4web/pgn4web/libs/jscolor/
H A Djscolor.js130 addEvent : function(el, evnt, func) { argument
131 if(el.addEventListener) {
133 } else if(el.attachEvent) {
134 el.attachEvent('on'+evnt, func);
139 fireEvent : function(el, evnt) { argument
140 if(!el) {
146 el.dispatchEvent(ev);
149 el.fireEvent('on'+evnt, ev);
151 el['on'+evnt]();
957 if(el.setAttribute) {
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfcklistcommands.js101 var el = path.Elements[i] ;
102 if ( el.nodeName.IEquals( ['ol', 'ul'] ) )
112 var groupObj = el._FCK_ListGroupObject ;
117 groupObj = { 'root' : el, 'contents' : [ block ] } ;
119 FCKDomTools.SetElementMarker( markerObj, el, '_FCK_ListGroupObject', groupObj ) ;
/plugin/quickstats/
H A Dscript.js123 for(el in inp) {
124 if(inp[el].type == 'hidden') {
125 var p = '&' + inp[el].name + '=' + inp[el].value;
/plugin/pdfjs/pdfjs/web/locale/es-CL/
H A Dviewer.properties148 findbar.title=Buscar en el documento
161 find_input.placeholder=Encontrar en el documento…
169 find_reached_top=Se alcanzó el inicio del documento, continuando desde el final
170 find_reached_bottom=Se alcanzó el final del documento, continuando desde el inicio
224 loading_error=Ha ocurrido un error al cargar el PDF.
226 missing_file_error=Falta el archivo PDF.
246 …pios colores: 'Permitir a las páginas elegir sus propios colores' está desactivado en el navegador.
/plugin/pdfjs/pdfjs/web/locale/es-ES/
H A Dviewer.properties140 toggle_sidebar_notification.title=Alternar panel lateral (el documento contiene un esquema o adjunt…
148 findbar.title=Buscar en el documento
161 find_input.placeholder=Buscar en el documento…
169 find_reached_top=Se alcanzó el inicio del documento, se continúa desde el final
170 find_reached_bottom=Se alcanzó el final del documento, se continúa desde el inicio
224 loading_error=Ocurrió un error al cargar el PDF.
246 …pios colores: 'Permitir a las páginas elegir sus propios colores' está desactivado en el navegador.
/plugin/tagging/script/
H A Deditable.js290 $('.editable-open').each(function(i, el){ argument
292 if(el === element || $(el).find(element).length) {
296 $(el).data('editable').hide();
/plugin/twofactor/action/
H A Dprofile.php205 $el = $form->addRadioButton('provider', $provider->getLabel())->val($provider->getProviderID());
207 $el->attr('checked', 'checked');
208 $el->getLabel()->val($provider->getLabel() . ' ' . $this->getLang('default'));

12345678910>>...13