Searched refs:toLowerCase (Results 1 – 25 of 666) sorted by relevance
12345678910>>...27
| /plugin/openlayersmap/ol/ |
| D | generate-info.js.diff | 11 + sourcePath.toLowerCase().includes('webgl') || 12 + sourcePath.toLowerCase().includes('geotiff') || 13 + sourcePath.toLowerCase().includes('gml') || 14 + sourcePath.toLowerCase().includes('format/filter') || 15 + sourcePath.toLowerCase().includes('format/xml') || 16 + sourcePath.toLowerCase().includes('wmscapabilities') || 17 + sourcePath.toLowerCase().includes('format/esrijson') || 18 + sourcePath.toLowerCase().includes('format/wk') || 19 + sourcePath.toLowerCase().includes('iiif') || 20 + sourcePath.toLowerCase().includes('vectortile') || [all …]
|
| /plugin/searchtablejs/ |
| D | script.js | 16 var suche = term.value.toLowerCase(); 21 if (ele.toLowerCase().indexOf(suche)>=0 ) 28 var words = phrase.value.toLowerCase().split(" "); 35 if (ele.toLowerCase().indexOf(words[i])>=0) 47 var searchstr = term.value.toLowerCase(); 53 if (ele.toLowerCase().indexOf(searchstr)>=0)
|
| D | tablefilter.js | 27 if(tbl != null && tbl.nodeName.toLowerCase() == "table") 35 switch(argtype.toLowerCase()) 365 SearchArgs.push( (grabEBI(SearchFlt[i]).value).toLowerCase() ); 386 var cell_data = getCellText(cell[j]).toLowerCase(); 554 if(t != null && t.nodeName.toLowerCase() == "table") 635 if(totrows != null && totrows.nodeName.toLowerCase() == "span" ) 702 var cell_data = getCellText( cell[j] ).toLowerCase(); 808 if( (typeof labelId).toLowerCase()=="object" 809 && (typeof colIndex).toLowerCase()=="object" 810 && (typeof operation).toLowerCase()=="object" ) [all …]
|
| /plugin/asciidocjs/node_modules/camelcase/ |
| D | index.js | 14 if (str[0] === str[0].toLowerCase() && str.slice(1) !== str.slice(1).toLowerCase()) { 18 return str.toLowerCase(); 23 .toLowerCase()
|
| /plugin/wysiwyg/fckeditor/editor/_source/classes/ |
| D | fckstyle.js | 51 this.Element = ( styleDesc.Element || 'span' ).toLowerCase() ; 203 var pathElementName = pathElement.nodeName.toLowerCase() ; 331 elementName = pathElement.nodeName.toLowerCase() ; 350 var elementName = currentNode.nodeName.toLowerCase() ; 414 var elementName = element.nodeName.toLowerCase() ; 669 if ( att.toLowerCase() == 'class' ) 687 valueA = valueA.replace( /;$/, '' ).toLowerCase() ; 688 valueB = valueB.replace( /;$/, '' ).toLowerCase() ; 861 var nodeName = nodeType == 1 ? currentNode.nodeName.toLowerCase() : null ; 868 … if ( ( FCK.DTD[ currentNode.parentNode.nodeName.toLowerCase() ] || FCK.DTD.span )[ elementName ] ) [all …]
|
| D | fckdomrangeiterator.js | 111 var nodeName = currentNode.nodeName.toLowerCase() ; 176 if ( boundarySet[ parentNode.nodeName.toLowerCase() ] ) 233 else if ( !block || ( this.EnforceRealBlocks && block.nodeName.toLowerCase() == 'li' ) ) 248 else if ( block.nodeName.toLowerCase() != 'li' ) 288 …if ( previousSibling && previousSibling.nodeType == 1 && previousSibling.nodeName.toLowerCase() ==… 295 if ( lastChild && lastChild.nodeType == 1 && lastChild.nodeName.toLowerCase() == 'br' )
|
| D | fckdomrange.js | 150 …ild ) && child.nodeType == 1 && FCKListsLib.EmptyElements[ child.nodeName.toLowerCase() ] == null ) 248 ….nodeType != 1 || FCKListsLib.InlineChildReqElements[ eLastChild.nodeName.toLowerCase() ] == null ) 536 while ( FCKListsLib.InlineNonEmptyElements[ oNode.nodeName.toLowerCase() ] ) 559 while ( FCKListsLib.InlineNonEmptyElements[ oNode.nodeName.toLowerCase() ] ) 601 && !boundarySet[ oNode.nodeName.toLowerCase() ] ) ) ) 608 …fig.EnterMode != 'br' && unit == 'block_contents' && this.EndBlock.nodeName.toLowerCase() != 'li' ) 621 && !boundarySet[ oNode.nodeName.toLowerCase() ] ) ) ) 629 if ( oNode && oNode.nodeName.toLowerCase() == 'br' )
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
| D | DefaultFileFilter.java | 44 ext = extension.toLowerCase(); in DefaultFileFilter() 58 return file.isDirectory() || file.getName().toLowerCase().endsWith(ext); in accept() 137 String filename = file.toString().toLowerCase(); in accept() 141 if (filename.endsWith("." + imageFormats[j].toLowerCase())) in accept() 200 String filename = file.getName().toLowerCase(); in accept()
|
| /plugin/grensladawritezor/fckeditor/editor/_source/classes/ |
| D | fckstyledef_ie.js | 57 switch ( a.toLowerCase() ) 94 switch ( a.toLowerCase() ) 97 if ( e.style.cssText.toLowerCase() != this.Attributes[a].toLowerCase() ) 126 switch ( a.toLowerCase() )
|
| /plugin/indexmenu2/cms/modifiers/ |
| D | groupcheckbox.js | 9 …toLowerCase()!='input'||i.type.toLowerCase()!='checkbox')return;var v=O(i[I['parentNode']][I['pare…
|
| D | followlinkcontent.js | 9 …toLowerCase()=='a'||document.location.href==_.href){if(Q.preventDefault)Q.preventDefault();Q.retur…
|
| /plugin/openlayersmapoverlays/ |
| D | script.js | 32 visibility: (overlay.visible).toLowerCase() == 'true', 95 visibility: (overlay.visible).toLowerCase() == 'true', 107 visibility: (overlay.visible).toLowerCase() == 'true', 175 visibility: (overlay.visible).toLowerCase() == 'true', 191 visibility: (overlay.visible).toLowerCase() == 'true',
|
| /plugin/diagramsnet/lib/plugins/ |
| D | voice.js | 429 str1 = str1.toLowerCase(); 430 str2 = str2.toLowerCase(); 787 var tmp = token.toLowerCase().replace(/ /g, ''); 792 if (styles[i].toLowerCase() == tmp) 803 tokens[0] = tokens[0].toLowerCase(); 875 …else if ((tokens[0] == 'info' && tokens.length == 1) || mxUtils.trim(command).toLowerCase() == 'wh… 895 else if (tokens[0] == 'quick' && tokens.length > 0 && tokens[1].toLowerCase() == 'start') 908 var searchToken = tokens.slice(1, tokens.length).join(' ').toLowerCase(); 993 var lastToken = tokens[tokens.length - 1].toLowerCase(); 1021 var lastValue = parseFloat(tokens[1].toLowerCase()); [all …]
|
| /plugin/asciidocjs/node_modules/yargs-parser/build/lib/ |
| D | string-utils.js | 9 const isCamelCase = str !== str.toLowerCase() && str !== str.toUpperCase(); 11 str = str.toLowerCase(); 37 const lowercase = str.toLowerCase();
|
| /plugin/tagentry/ |
| D | script.js | 6 var tagstart = oldtext.toLowerCase().indexOf("{{tag>"); 19 while ((f=oldtext.toLowerCase().substr(s,l).indexOf(tagname.toLowerCase())) >= 0) {
|
| /plugin/ryubin/ryubin/js/ |
| D | AC_RunActiveContent.js | 6 var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; 110 else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; 112 else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; 114 else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; 217 var currArg = args[i].toLowerCase();
|
| /plugin/sectiontoggle/ |
| D | script.js | 35 text = text.toLowerCase(); 49 regex = RegExp('\\b' + escapeRegExp(hash.toLowerCase()) + '\\b'); 51 if(hash.toLowerCase() == SectionToggle.hash || regex.test(JSINFO['h_ini_open'])) { 128 SectionToggle.hash = window.location.hash.toLowerCase(); 175 var tagname = jQuery(this).prop("tagName").toLowerCase();
|
| /plugin/asciidocjs/node_modules/unxhr/lib/ |
| D | XMLHttpRequest.js | 142 …return disableHeaderCheck || (header && forbiddenRequestHeaders.indexOf(header.toLowerCase()) === … 215 header = headersCase[header.toLowerCase()] || header 216 headersCase[header.toLowerCase()] = header 231 response.headers[header.toLowerCase()] && 234 return response.headers[header.toLowerCase()] 267 if (typeof name === 'string' && headersCase[name.toLowerCase()]) { 268 return headers[headersCase[name.toLowerCase()]] 348 if (!headersCase[name.toLowerCase()]) {
|
| /plugin/editsections2/ |
| D | script.js | 90 parent.tagName.toLowerCase() === 'div' && 189 parent.tagName.toLowerCase() === 'div' && 277 if (!cursor.tagName || cursor.tagName.toLowerCase() !== 'div') { 285 cursor.tagName.toLowerCase() !== 'div' ||
|
| /plugin/searchtablejs/TableFilter_EN/ |
| D | tablefilter.js | 27 if(tbl != null && tbl.nodeName.toLowerCase() == "table") 35 switch(argtype.toLowerCase()) 365 SearchArgs.push( (grabEBI(SearchFlt[i]).value).toLowerCase() ); 386 var cell_data = getCellText(cell[j]).toLowerCase(); 554 if(t != null && t.nodeName.toLowerCase() == "table") 635 if(totrows != null && totrows.nodeName.toLowerCase() == "span" ) 702 var cell_data = getCellText( cell[j] ).toLowerCase(); 808 if( (typeof labelId).toLowerCase()=="object" 809 && (typeof colIndex).toLowerCase()=="object" 810 && (typeof operation).toLowerCase()=="object" ) [all …]
|
| /plugin/asciidocjs/node_modules/lazy-cache/ |
| D | index.js | 55 return str.toLowerCase(); 57 str = str.replace(/^[\W_]+|[\W_]+$/g, '').toLowerCase();
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fckdomtools.js | 123 if ( eChildNode && eChildNode.nodeType == 1 && eChildNode.nodeName.toLowerCase() == 'br' ) 349 tagMap[tagList.pop().toLowerCase()] = 1 ; 355 if ( tagMap[currentParent.nodeName.toLowerCase()] ) 385 || doc.body.lastChild.tagName.toLowerCase() == tagName.toLowerCase() ) ) 393 && doc.body.firstChild.tagName.toLowerCase() == 'br' 409 || paddingNode.tagName.toLowerCase() != tagName 412 && String(paddingNode.firstChild.tagName).toLowerCase() != 'br' ) ) 471 if ( FCKBrowserInfo.IsIE && attributeName.toLowerCase() == 'class' ) 780 if ( FCKListsLib.BlockBoundaries[currentListItem.firstChild.nodeName.toLowerCase()] ) 862 if ( elementChild || !FCKListsLib.InlineNonEmptyElements[ child.nodeName.toLowerCase() ] )
|
| D | fckxhtml_gecko.js | 44 var sAttName = oAttribute.nodeName.toLowerCase() ; 91 if ( htmlNode.parentNode.nodeName.toLowerCase() != 'head' )
|
| D | fck_gecko.js | 85 var tag = node.tagName.toLowerCase() ; 106 var parentTag = node.parentNode.tagName.toLowerCase() ; 145 && ( ! FCKListsLib.BlockElements[node.parentNode.tagName.toLowerCase()] ) ) 173 var stopTag = stopNode.tagName.toLowerCase() ; 203 var nodeTag = emptyBlockNode.tagName.toLowerCase() ;
|
| /plugin/xhtmlruby/ |
| D | script.js | 19 ruleName=ruleName.toLowerCase(); 29 if (cssRule.selectorText.toLowerCase()==ruleName) {
|
12345678910>>...27