Home

Class goog.editor.plugins.LinkDialogPlugin

A plugin that opens the link dialog.

extends goog.editor.plugins.AbstractDialogPlugin
Instance Method Summary
createDialog(!goog.dom.DomHelper dialogDomHelper, <Any Type> opt_arg) ⇒ ?goog.ui.editor.AbstractDialog

Creates a new instance of the dialog and registers for the relevant events.

disposeInternal()

Unattach listeners from this object. Classes that extend EventTarget may need to override this method in order to remove references to DOM Elements and additional listeners, it should be something like this:

MyClass.prototype.disposeInternal = function() {
MyClass.superClass_.disposeInternal.call(this);
// Dispose logic for MyClass
};

getCurrentLink() ⇒ ?goog.editor.Link
getEventHandler() ⇒ ?goog.events.EventHandler
getOpenLinkInNewWindowCheckedState() ⇒ boolean

Returns whether the"open link in new window" checkbox was checked last time the dialog was closed.

handleAfterHide(?goog.events.Event e)

Handles when the dialog closes.

handleCancel_(?goog.events.Event e)

Handles the CANCEL event from the dialog by clearing the anchor if needed.

handleOk_(?goog.ui.editor.LinkDialog.OkEvent e)

Handles the OK event from the dialog by updating the link in the field.

setEmailWarning(string emailWarning)

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

showOpenLinkInNewWindow(boolean startChecked)

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

stopReferrerLeaks()

Tells the plugin to stop leaking the page's url via the referrer header when the "test this link" link is clicked. When the user clicks on a link, the browser makes a request for the link url, passing the url of the current page in the request headers. If the user wants the current url to be kept secret (e.g. an unpublished document), the owner of the url that was clicked will see the secret url in the request headers, and it will no longer be a secret. Calling this method will not send a referrer header in the request, just as if the user had opened a blank window and typed the url in themselves.