Added a checkbox to the Xinha link dialog to make external links open in a new tab/window
git-svn-id: https://svn.libreccm.org/ccm/trunk@3684 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
11626c2299
commit
e998131935
|
|
@ -17,5 +17,6 @@
|
|||
"Dimension" : "Dimensionen",
|
||||
"Width:" : "Breite:",
|
||||
"Height:" : "Höhe:",
|
||||
"Preview" : "Vorschau"
|
||||
"Preview" : "Vorschau",
|
||||
"New tab/window": "In neuem Tab/Fenster öffnen:"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,5 +17,6 @@
|
|||
"Dimension" : "Dimension",
|
||||
"Width:" : "Width:",
|
||||
"Height:" : "Height:",
|
||||
"Preview" : "Preview"
|
||||
"Preview" : "Preview",
|
||||
"New tab/window:": "Open in new tab/window:"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -107,6 +107,12 @@
|
|||
<div class="value">
|
||||
<input type="text" name="[href]" id="[href]" value=""/>
|
||||
</div>
|
||||
<label class="key" for="[newWindow]">
|
||||
<l10n>New tab/window:</l10n>
|
||||
</label>
|
||||
<div class="value">
|
||||
<input type="checkbox" name="[newWindow]" id="[newWindow]"/>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<!-- Evt. für spätere Erweiteung, aber eigentlich sollten Links auf Contact-Items verwendet werden -->
|
||||
|
|
|
|||
|
|
@ -20,7 +20,8 @@ OpenCCM.prototype.showLinkDialog = function(link)
|
|||
type: 'internal',
|
||||
ci_name: '',
|
||||
ci_href: '',
|
||||
href: ''
|
||||
href: '',
|
||||
target: ''
|
||||
};
|
||||
|
||||
if (link && link.tagName.toLowerCase() == 'a')
|
||||
|
|
@ -47,6 +48,10 @@ OpenCCM.prototype.showLinkDialog = function(link)
|
|||
data.href = href;
|
||||
}
|
||||
|
||||
if (link.target === "_blank") {
|
||||
data.newWindow = "on";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// now calling the show method of the Xinha.Dialog object to set the values and show the actual dialog
|
||||
|
|
@ -97,7 +102,8 @@ OpenCCM.prototype.linkApply = function()
|
|||
href: '',
|
||||
alt: '',
|
||||
title: '',
|
||||
class: ''
|
||||
class: '',
|
||||
target: ''
|
||||
};
|
||||
|
||||
// Read needed form values
|
||||
|
|
@ -116,6 +122,9 @@ OpenCCM.prototype.linkApply = function()
|
|||
linkAttr.href = values.href;
|
||||
linkAttr.title = values.title;
|
||||
linkAttr.class = "linkExternal";
|
||||
if (values.newWindow === "on") {
|
||||
linkAttr.target = "_blank";
|
||||
}
|
||||
|
||||
// Make absolute url
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue