Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/acronym.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/acronym.js (révision 7807) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/acronym.js (copie de travail) @@ -42,7 +42,7 @@ * Registering plugin "About" information */ var pluginInformation = { - version : "2.0", + version : "2.1", developer : "Stanislas Rolland", developerUrl : "http://www.sjbr.ca/", copyrightOwner : "Stanislas Rolland", @@ -220,11 +220,11 @@ * @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; }, /* Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js (révision 7807) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js (copie de travail) @@ -49,7 +49,7 @@ * 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', @@ -466,8 +466,8 @@ items: items }, buttons: [ - this.buildButtonConfig('Cancel', this.onCancel), - this.buildButtonConfig('OK', handler) + this.buildButtonConfig('OK', handler), + this.buildButtonConfig('Cancel', this.onCancel) ] }); this.show(); Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (révision 7807) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (copie de travail) @@ -76,7 +76,7 @@ * 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", @@ -373,8 +373,8 @@ items: tabItems }, buttons: [ - this.buildButtonConfig('Cancel', this.onCancel), - this.buildButtonConfig('OK', handler) + this.buildButtonConfig('OK', handler), + this.buildButtonConfig('Cancel', this.onCancel) ] }); this.show(); Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/typo3color.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/typo3color.js (révision 7807) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/typo3color.js (copie de travail) @@ -64,7 +64,7 @@ * Registering plugin "About" information */ var pluginInformation = { - version : '4.0', + version : '4.1', developer : 'Stanislas Rolland', developerUrl : 'http://www.sjbr.ca/', copyrightOwner : 'Stanislas Rolland', @@ -326,8 +326,8 @@ items: items }, buttons: [ - this.buildButtonConfig('Cancel', this.onCancel), - this.buildButtonConfig('OK', handler) + this.buildButtonConfig('OK', handler), + this.buildButtonConfig('Cancel', this.onCancel) ] }); this.show();