The goog.ui.editor.LinkDialog Class

goog.ui.editor.LinkDialog
> goog.ui.editor.AbstractDialog
> goog.events.EventTarget
> goog.Disposable

goog.ui.editor.LinkDialog(domHelper, link)

A type of goog.ui.editor.AbstractDialog for editing/creating a link.

domHelper {goog.dom.DomHelper}
DomHelper to be used to create the dialog's dom structure.
link {goog.editor.Link}
The target link.

The goog.ui.editor.LinkDialog.BeforeTestLinkEvent Class

Event fired before testing a link by opening it in another window. Calling preventDefault will stop the link from being opened. … more

The goog.ui.editor.LinkDialog.EventType Enum

Events specific to the link dialog. … more

The goog.ui.editor.LinkDialog.OkEvent Class

OK event object for the link dialog. … more

.addEventListener(type, handler, opt_capture, opt_handlerScope)

Inherited from goog.events.EventTarget .

Adds an event listener to the event target. The same handler can only be added once per the type. Even if you add the same handler multiple times using the same type then it will only be called once when the event is dispatched. Supported for legacy but use goog.events.listen(src, type, handler) instead.

type {string}
The type of the event to listen for.
handler {Function|Object}
The function to handle the event. The handler can also be an object that implements the handleEvent method which takes the event object as argument.
opt_capture {boolean=}
In DOM-compliant browsers, this determines whether the listener is fired during the capture or bubble phase of the event.
opt_handlerScope {Object=}
Object in whose scope to call the listener.

.addOnDisposeCallback(callback, opt_scope)

Inherited from goog.Disposable .

Invokes a callback function when this object is disposed. Callbacks are invoked in the order in which they were added.

callback {!Function}
The callback function.
opt_scope {Object=}
An optional scope to call the callback in.

.creationStack {string}

Inherited from goog.Disposable .

If monitoring the goog.Disposable instances is enabled, stores the creation stack trace of the Disposable instance.

.dispatchEvent(e)

Inherited from goog.events.EventTarget .

Dispatches an event (or event like object) and calls all listeners listening for events of this type. The type of the event is decided by the type property on the event object. If any of the listeners returns false OR calls preventDefault then this function will return false. If one of the capture listeners calls stopPropagation, then the bubble listeners won't fire.

e {string|Object|goog.events.Event}
Event object.
returns {boolean}
If anyone called preventDefault on the event object (or if any of the handlers returns false this will also return false.

.dispose()

Inherited from goog.Disposable .

Disposes of the object. If the object hasn't already been disposed of, calls {@link #disposeInternal}. Classes that extend {@code goog.Disposable} should override {@link #disposeInternal} in order to delete references to COM objects, DOM nodes, and other disposable objects. Reentrant.

returns {void}
Nothing.

.getParentEventTarget()

Inherited from goog.events.EventTarget .

Returns the parent of this event target to use for bubbling.

returns {goog.events.EventTarget}
The parent EventTarget or null if there is no parent.

.hasNoFollow(str)

Checks if {@code str} contains {@code "nofollow"} as a separate word.

str {string}
String to be tested. This is usually {@code rel} attribute of an {@code HTMLAnchorElement} object.
returns {boolean}
{@code true} if {@code str} contains {@code nofollow}.

.hide()

Hides the dialog, causing AFTER_HIDE to fire.

.isDisposed()

Inherited from goog.Disposable .

returns {boolean}
Whether the object has been disposed of.

.isOpen()

Inherited from goog.ui.editor.AbstractDialog .

returns {boolean}
Whether the dialog is open.

.registerDisposable(disposable)

Inherited from goog.Disposable .

Associates a disposable object with this object so that they will be disposed together.

disposable {goog.disposable.IDisposable}
that will be disposed when this object is disposed.

.removeEventListener(type, handler, opt_capture, opt_handlerScope)

Inherited from goog.events.EventTarget .

Removes an event listener from the event target. The handler must be the same object as the one added. If the handler has not been added then nothing is done.

type {string}
The type of the event to listen for.
handler {Function|Object}
The function to handle the event. The handler can also be an object that implements the handleEvent method which takes the event object as argument.
opt_capture {boolean=}
In DOM-compliant browsers, this determines whether the listener is fired during the capture or bubble phase of the event.
opt_handlerScope {Object=}
Object in whose scope to call the listener.

.removeNoFollow(rel)

Removes {@code "nofollow"} from {@code rel} if it's present as a separate word.

rel {string}
Input string. This is usually {@code rel} attribute of an {@code HTMLAnchorElement} object.
returns {string}
{@code rel} with any {@code "nofollow"} removed.

.setAutogenFeatureEnabled(enable)

Tells the dialog whether the autogeneration of text to display is to be enabled.

enable {boolean}
Whether to enable the feature.

.setEmailWarning(emailWarning)

Sets the warning message to show to users about including email addresses on public web pages.

emailWarning {string}
Warning message to show users about including email addresses on the web.

.setParentEventTarget(parent)

Inherited from goog.events.EventTarget .

Sets the parent of this event target to use for bubbling.

parent {goog.events.EventTarget?}
Parent EventTarget (null if none).

.setStopReferrerLeaks(stop)

Tells the plugin whether to stop leaking the page's url via the referrer header when the "test this link" link is clicked.

stop {boolean}
Whether to stop leaking the referrer.

.setTextToDisplayVisible(visible)

Tells the dialog whether to show the 'text to display' div. When the target element of the dialog is an image, there is no link text to modify. This function can be used for this kind of situations.

visible {boolean}
Whether to make 'text to display' div visible.

.show()

Causes the dialog box to appear, centered on the screen. Lazily creates the dialog if needed.

.showOpenLinkInNewWindow(startChecked)

Tells the dialog to show a checkbox where the user can choose to have the link open in a new window.

startChecked {boolean}
Whether to check the checkbox the first time the dialog is shown. Subesquent times the checkbox will remember its previous state.

.showRelNoFollow()

Tells the dialog to show a checkbox where the user can choose to add 'rel=nofollow' attribute to the link.