Lines Matching refs:url
45 url = prompt(CreateLinkBase.STRINGS.PROMPT, CreateLinkBase.STRINGS.DEFAULT);
47 if (url) {
49 url = url.replace(/"/g, '').replace(/'/g, ''); //Remove single & double quotes
50 url = inst.config.doc.createTextNode(url);
51 holder.appendChild(url);
52 url = holder.innerHTML;
54 Y.log('Adding link: ' + url, 'info', 'createLinkBase');
56 this.get('host')._execCommand(cmd, url);
74 this.get('host').execCommand('inserthtml', '<a href="' + url + '">' + url + '</a>');