Home

Class goog.editor.plugins.LinkBubble

Property bubble plugin for links.

extends goog.editor.plugins.AbstractBubblePlugin
Instance Method Summary
createBubbleContents(?Element bubbleContainer)

Should be overriden by subclasses to add the type specific contents to the bubble.

deleteLink_()

Deletes the link associated with the bubble

getBubbleTargetFromSelection(?Element selectedElement) ⇒ ?Element

Should be overriden by subclasses to return the bubble target element or null if an element of their required type isn't found.

getBubbleTitle() ⇒ string
getBubbleType() ⇒ string
getLinkToTextObj_() ⇒ ?Object

Gets the text to display for a link, based on the type of link

getTargetUrl() ⇒ string

Returns the target element url for the bubble.

getTestLinkAction_() ⇒ string

Gets the url for the bubble test link. The test link is the link in the bubble the user can click on to make sure the link they entered is correct.

onShow()

Sets the proper state for the action links.

setTestLinkUrlFn(function (string): string func)

Set the optional function for getting the "test" link of a url.

showLinkDialog_()

Shows the link dialog

stopReferrerLeaks()

Tells the plugin to stop leaking the page's url via the referrer header when the link text 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.

testLink()

Tests the link by opening it in a new tab/window. Should be used as the click event handler for the test pseudo-link.