+2008-11-22 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Follow up for feature #9775: htmlArea RTE: additional features for link insertion dialogue
+
2008-11-22 Steffen Kamper <info@sk-typo3.de>
* felogin: completed ChangeLog, raised ext-version to 1.1.0
+2008-11-22 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Follow up for feature #9775: htmlArea RTE: additional features for link insertion dialogue
+
2008-11-13 Stanislas Rolland <typo3@sjbr.ca>
* Follow up for issue #9771: htmlArea RTE spellchecker not working in TYPO3 4.3-dev
return false;
}
';
- // General "jumpToUrl" function:
+ // General "jumpToUrl" and launchView functions:
$JScode.='
function jumpToUrl(URL,anchor) {
var add_editorNo = URL.indexOf("editorNo=")==-1 ? "&editorNo='.$this->editorNo.'" : "";
window.location.href = theLocation;
return false;
}
+ function launchView(url) {
+ var thePreviewWindow="";
+ thePreviewWindow = window.open("' . $GLOBALS['BACK_PATH'] . 'show_item.php?table="+url,"ShowItem","height=300,width=410,status=0,menubar=0,resizable=0,location=0,directories=0,scrollbars=1,toolbar=0");
+ if (thePreviewWindow && thePreviewWindow.focus) {
+ thePreviewWindow.focus();
+ }
+ }
';
return $JScode;
}