re-order converters in the dropdown

This commit is contained in:
Manuel Friedli 2016-09-20 22:41:07 +02:00
parent f5999c5276
commit 140060a733
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ export class ConverterRegistryService {
this.registerConverter(new URIComponentDecoder());
this.registerConverter(new HTMLEntitiesEncoder());
this.registerConverter(new HTMLEntitiesDecoder());
this.registerConverter(new QuotedPrintableEncoder(this.wrapper));
this.registerConverter(new QuotedPrintableDecoder(this.wrapper));
this.registerConverter(new DecToHexConverter());
this.registerConverter(new HexToDecConverter());
this.registerConverter(new DecToBinConverter());
this.registerConverter(new BinToDecConverter());
this.registerConverter(new QuotedPrintableEncoder(this.wrapper));
this.registerConverter(new QuotedPrintableDecoder(this.wrapper));
}
private registerConverter(converter:Converter):void {