From 140060a733a7d3243b38d95ce32d764daddee181 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Tue, 20 Sep 2016 22:41:07 +0200 Subject: [PATCH] re-order converters in the dropdown --- app/converterregistry.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/converterregistry.service.ts b/app/converterregistry.service.ts index e5054a1..48817b7 100644 --- a/app/converterregistry.service.ts +++ b/app/converterregistry.service.ts @@ -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 {