Bug #18179 ยป rtehtmlarea_bugfix_7468.patch
typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js (working copy) | ||
---|---|---|
* @return boolean false if action is completed
|
||
*/
|
||
onButtonPress : function(editor, id, target) {
|
||
var selection = editor.getSelectedHTML().replace(/(<[^>]*>| |\n|\r)/g,"");
|
||
|
||
if(/\w/.test(selection)) {
|
||
this.dialog = this.openDialog("InsertTag", this.makeUrlFromPopupName("quicktag"), "setTag", null, {width:450, height:108});
|
||
} else {
|
||
alert(this.localize("You have to select some text"));
|
||
}
|
||
this.dialog = this.openDialog("InsertTag", this.makeUrlFromPopupName("quicktag"), "setTag", null, {width:450, height:108});
|
||
},
|
||
|
||
/*
|