Bug #22815 ยป rtehtmlarea_bugfix_14625_trunk.patch
typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/acronym.js (copie de travail) | ||
---|---|---|
* Registering plugin "About" information
|
||
*/
|
||
var pluginInformation = {
|
||
version : "2.0",
|
||
version : "2.1",
|
||
developer : "Stanislas Rolland",
|
||
developerUrl : "http://www.sjbr.ca/",
|
||
copyrightOwner : "Stanislas Rolland",
|
||
... | ... | |
* @return object the buttons configuration
|
||
*/
|
||
buildButtonsConfig: function (element, okHandler, deleteHandler) {
|
||
var buttonsConfig = [this.buildButtonConfig('Cancel', this.onCancel)];
|
||
var buttonsConfig = [this.buildButtonConfig('OK', okHandler)];
|
||
if (element) {
|
||
buttonsConfig.push(this.buildButtonConfig('Delete', deleteHandler));
|
||
}
|
||
buttonsConfig.push(this.buildButtonConfig('OK', okHandler));
|
||
buttonsConfig.push(this.buildButtonConfig('Cancel', this.onCancel));
|
||
return buttonsConfig;
|
||
},
|
||
/*
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js (copie de travail) | ||
---|---|---|
* Registering plugin "About" information
|
||
*/
|
||
var pluginInformation = {
|
||
version : '2.0',
|
||
version : '2.1',
|
||
developer : 'Cau Guanabara & Stanislas Rolland',
|
||
developerUrl : 'http://www.sjbr.ca',
|
||
copyrightOwner : 'Cau Guanabara & Stanislas Rolland',
|
||
... | ... | |
items: items
|
||
},
|
||
buttons: [
|
||
this.buildButtonConfig('Cancel', this.onCancel),
|
||
this.buildButtonConfig('OK', handler)
|
||
this.buildButtonConfig('OK', handler),
|
||
this.buildButtonConfig('Cancel', this.onCancel)
|
||
]
|
||
});
|
||
this.show();
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (copie de travail) | ||
---|---|---|
* Registering plugin "About" information
|
||
*/
|
||
var pluginInformation = {
|
||
version : "5.0",
|
||
version : "5.1",
|
||
developer : "Mihai Bazon & Stanislas Rolland",
|
||
developerUrl : "http://www.sjbr.ca/",
|
||
copyrightOwner : "Mihai Bazon & Stanislas Rolland",
|
||
... | ... | |
items: tabItems
|
||
},
|
||
buttons: [
|
||
this.buildButtonConfig('Cancel', this.onCancel),
|
||
this.buildButtonConfig('OK', handler)
|
||
this.buildButtonConfig('OK', handler),
|
||
this.buildButtonConfig('Cancel', this.onCancel)
|
||
]
|
||
});
|
||
this.show();
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/typo3color.js (copie de travail) | ||
---|---|---|
* Registering plugin "About" information
|
||
*/
|
||
var pluginInformation = {
|
||
version : '4.0',
|
||
version : '4.1',
|
||
developer : 'Stanislas Rolland',
|
||
developerUrl : 'http://www.sjbr.ca/',
|
||
copyrightOwner : 'Stanislas Rolland',
|
||
... | ... | |
items: items
|
||
},
|
||
buttons: [
|
||
this.buildButtonConfig('Cancel', this.onCancel),
|
||
this.buildButtonConfig('OK', handler)
|
||
this.buildButtonConfig('OK', handler),
|
||
this.buildButtonConfig('Cancel', this.onCancel)
|
||
]
|
||
});
|
||
this.show();
|