Lines Matching refs:href

206 …encodedEmailLinkRegex = /^javascript:void\(location\.href='mailto:'\+String\.fromCharCode\(([^)]+)…
213 …/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;…
218 …var href = ( element && ( element.data( 'cke-saved-href' ) || element.getAttribute( 'href' ) ) ) …
225 if ( ( javascriptMatch = href.match( javascriptProtocolRegex ) ) )
229 href = href.replace( encodedEmailLinkRegex,
240 href.replace( functionCallProtectedEmailLinkRegex, function( match, funcName, funcArgs )
269 if ( ( anchorMatch = href.match( anchorRegex ) ) )
276 else if ( ( emailMatch = href.match( emailRegex ) ) )
278 var subjectMatch = href.match( emailSubjectRegex ),
279 bodyMatch = href.match( emailBodyRegex );
287 …else if((urlMatch = href.match(oRegex.media_internal)) || (urlMatch = href.match(oRegex.media_rewr…
288 …|| (urlMatch = href.match(oRegex.media_rewrite_2)) || (urlMatch = href.match(oRegex.media_rewrite_…
295 …else if( (urlMatch = href.match( oRegex.internal_link )) || (urlMatch = href.match( internalLinkRe…
296 || (urlMatch = href.match( oRegex.internal_link_rewrite_1 ))
308 else if(urlMatch = href.match(oRegex.samba)) {
316 else if(urlMatch = href.match(oRegex.samba_unsaved)) {
323 else if( urlMatch = href.match(oRegex.interwiki) || class_name.match(/interwiki/) ) {
344 match = href.match(regex);
361 // urlRegex matches empty strings, so need to check for href as well.
362 else if ( href && ( urlMatch = href.match( urlRegex ) ) )
1097 if ( ( element = plugin.getSelectedLink( editor ) ) && element.hasAttribute( 'href' ) )
1151 attributes[ 'data-cke-saved-href' ] = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
1199 attributes[ 'data-cke-saved-href' ] = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
1224 attributes[ 'data-cke-saved-href' ] = data.url.url;
1230 attributes[ 'data-cke-saved-href' ] = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
1236 attributes[ 'data-cke-saved-href' ] = '#' + ( name || id || '' );
1249 attributes[ 'data-cke-saved-href' ] = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
1276 linkHref = [ 'javascript:void(location.href=\'mailto:\'+',
1299 attributes[ 'data-cke-saved-href' ] = linkHref.join( '' );
1341 // Browser need the "href" fro copy/paste link to work. (#6641)
1342 attributes.href = attributes[ 'data-cke-saved-href' ];
1356 data.email.address : attributes[ 'data-cke-saved-href' ], editor.document );
1366 el.setAttribute( 'href', attributes['href']);
1375 if(attr.match(/href/i))continue;
1391 href = element.data( 'cke-saved-href' ),
1404 if ( href == textView || data.type == 'email' && textView.indexOf( '@' ) != -1 )
1408 data.email.address : attributes[ 'data-cke-saved-href' ] );
1415 var url = href.replace(iwiki_text, data.adv.advTitle);