Searched refs:oLink (Results 1 – 12 of 12) sorted by relevance
/plugin/wysiwyg/fckeditor/editor/dialog/fck_link/ |
H A D | fck_link.js | 128 if ( oLink ) 129 FCK.Selection.SelectNode( oLink ) ; 207 if ( !oLink ) return ; 287 var sTarget = oLink.target ; 303 GetE('txtAttId').value = oLink.id ; 304 GetE('txtAttName').value = oLink.name ; 308 GetE('txtAttTabIndex').value = oLink.tabIndex <= 0 ? '' : oLink.tabIndex ; 515 var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri, true ) ; 551 oLink = aLinks[i] ; 556 oLink.href = sUri ; [all …]
|
/plugin/fckg/fckeditor/editor/dialog/fck_link/ |
H A D | fck_link.js | 327 if ( oLink ) 328 FCK.Selection.SelectNode( oLink ) ; 500 if ( !oLink ) { 659 var sTarget = oLink.target ; 675 GetE('txtAttId').value = oLink.id ; 676 GetE('txtAttName').value = oLink.name ; 680 GetE('txtAttTabIndex').value = oLink.tabIndex <= 0 ? '' : oLink.tabIndex ; 975 var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri, true ) ; 1044 oLink = aLinks[i] ; 1051 oLink.href = sUri; [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fck_ie.js | 370 var oLink = this.EditorDocument.createElement( 'A' ) ; 371 oLink.href = url ; 376 oControl.parentNode.insertBefore(oLink, oControl) ; 379 oLink.appendChild( oControl ) ; 381 return [ oLink ] ; 395 var oLink = oLinks[i] ; 399 if ( oLink.getAttribute( 'href', 2 ) == sTempUrl ) 402 oLink.href = url ; 407 var oLastChild = oLink.lastChild ; 411 FCKDomTools.InsertAfterNode( oLink, oLink.removeChild( oLastChild ) ) ; [all …]
|
H A D | fckdocumentprocessor.js | 59 var oLink ; 61 while ( i >= 0 && ( oLink = aLinks[i--] ) ) 64 if ( oLink.name.length > 0 ) 67 if ( oLink.innerHTML !== '' ) 70 oLink.className += ' FCK__AnchorC' ; 74 var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Anchor', oLink.cloneNode(true) ) ; 77 oLink.parentNode.insertBefore( oImg, oLink ) ; 78 oLink.parentNode.removeChild( oLink ) ;
|
H A D | fck_contextmenu.js | 124 var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ; 125 var bIsAnchor = ( oLink && oLink.name.length > 0 && oLink.href.length == 0 ) ; 153 var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ; 154 var bIsAnchor = ( oLink && oLink.name.length > 0 ) ;
|
H A D | fck_gecko.js | 451 var oLink = oLinksInteractor.snapshotItem( i ) ; 452 oLink.href = url ; 453 aCreatedLinks.push( oLink ) ;
|
/plugin/wysiwyg/fckeditor/editor/dialog/fck_image/ |
H A D | fck_image.js | 62 var oLink = FCK.Selection.MoveToAncestorNode( 'A' ) ; variable 182 if ( oLink ) 184 var sLinkUrl = oLink.getAttribute( '_fcksavedurl' ) ; 186 sLinkUrl = oLink.getAttribute('href',2) ; 189 GetE('cmbLnkTarget').value = oLink.target ; 240 if ( oLink ) 245 if ( oLink ) // Modifying an existent link. 246 oLink.href = sLnkUrl ; 252 oLink = oEditor.FCK.CreateLink( sLnkUrl )[0] ; 256 oEditor.FCKSelection.SelectNode( oLink ) ; [all …]
|
/plugin/fckg/fckeditor/editor/dialog/fck_image/ |
H A D | fck_image.js | 234 if ( oLink ) 236 var sLinkUrl = oLink.getAttribute( '_fcksavedurl' ) ; 238 sLinkUrl = oLink.getAttribute('href',2) ; 241 GetE('cmbLnkTarget').value = oLink.target ; 294 if ( oLink ) 299 if ( oLink ) // Modifying an existent link. 300 oLink.href = sLnkUrl ; 306 oLink = oEditor.FCK.CreateLink( sLnkUrl )[0] ; 310 oEditor.FCKSelection.SelectNode( oLink ) ; 315 SetAttribute( oLink, '_fcksavedurl', sLnkUrl ) ; [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/ |
H A D | fck_othercommands.js | 273 var oLink = FCK.Selection.MoveToAncestorNode( 'A' ) ; 275 if ( oLink ) 276 FCKTools.RemoveOuterTags( oLink ) ; 291 var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ; 292 var bIsAnchor = ( oLink && oLink.name.length > 0 && oLink.href.length == 0 ) ;
|
/plugin/tindexmenu/ |
H A D | script.js | 104 var oLink = document.createElement("script"); 105 oLink.src = f; 106 oLink.type = "text/javascript"; 107 oLink.charset="utf-8"; 109 document.getElementsByTagName("head")[0].appendChild(oLink);
|
H A D | indexmenu-full.js | 711 var oLink = document.createElement("link"); 712 oLink.href = this.config.plugbase + '/images/' + this.config.theme 714 oLink.rel = "stylesheet"; 715 oLink.type = "text/css"; 716 document.getElementsByTagName('head')[0].appendChild(oLink);
|
/plugin/indexmenu/scripts/ |
H A D | indexmenu.js | 923 let oLink = document.createElement("link"); 924 oLink.href = this.config.plugbase + '/images/' + this.config.theme + '/style.css'; 925 oLink.rel = "stylesheet"; 926 oLink.type = "text/css"; 927 document.getElementsByTagName('head')[0].appendChild(oLink);
|