From 1d9f23a1dccdd07e6f7ccd5d5a8f3e0d11388667 Mon Sep 17 00:00:00 2001 From: Artem Novichkov Date: Sat, 24 Feb 2018 14:24:55 +0600 Subject: [PATCH] Remove test options --- index.js | 4 +--- manifest.json | 22 ---------------------- 2 files changed, 1 insertion(+), 25 deletions(-) diff --git a/index.js b/index.js index 56c8027..2020795 100644 --- a/index.js +++ b/index.js @@ -122,9 +122,7 @@ function camelize(str) { function options(context) { return { - textOption: context.getOption("text_option"), - useColorNames: context.getOption("use_color_names"), - pickerOption: context.getOption("picker_option") + useColorNames: context.getOption("use_color_names") } } diff --git a/manifest.json b/manifest.json index 15f6ca5..048de4e 100644 --- a/manifest.json +++ b/manifest.json @@ -10,33 +10,11 @@ }, "repository": "http://github.com/artemnovichkov/zepcode", "options": [ - { - "name": "Text option", - "type": "text", - "id": "text_option", - "default": "for iOS" - }, { "name": "Use color names", "type": "switch", "id": "use_color_names", "default": true - }, - { - "name": "Picker option", - "type": "picker", - "id": "picker_option", - "options": [ - { - "name": "First", - "value": "1" - }, - { - "name": "Second", - "value": "2" - } - ], - "default": "1" } ] } \ No newline at end of file