Skip to content

Commit

Permalink
Remove test options
Browse files Browse the repository at this point in the history
  • Loading branch information
artemnovichkov committed Feb 24, 2018
1 parent 9f29021 commit 1d9f23a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand Down
22 changes: 0 additions & 22 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}

0 comments on commit 1d9f23a

Please sign in to comment.