Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/js_tests/fixtures/container.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/js_tests/fixtures/container.html')
-rw-r--r--webapp/js_tests/fixtures/container.html19
1 files changed, 16 insertions, 3 deletions
diff --git a/webapp/js_tests/fixtures/container.html b/webapp/js_tests/fixtures/container.html
index 1037a46..cf1fb9a 100644
--- a/webapp/js_tests/fixtures/container.html
+++ b/webapp/js_tests/fixtures/container.html
@@ -6,8 +6,21 @@
<script>
var container = $('#WGroupContainer'),
- WIDGET_TYPES = [{'0': {'key': 'TextInput', 'value': 'Respuesta de texto'}}],
- WITH_OPTIONS = ["MultipleCheckBox", "DropDownList", "RadioButton"],
- OFFSET_OPTION_ID = 1;
+ WIDGET_TYPES = [{
+ '0': {'key': 'TextInput', 'value': 'Texto'},
+ '1': {'key': 'MultipleCheckBox', 'value': 'Checklist (multiple opción)'},
+ '2': {'key': 'RadioButton', 'value': 'Checklist (única respuesta)'},
+ '3': {'key': 'DropDownList', 'value': 'Despliegue de lista (única respuesta)'},
+ '4': {'key': 'ImageCheckBox', 'value': 'Checklist con imágenes (multiple opción)'},
+ '5': {'key': 'ImageRadioButton', 'value': 'Checklist con imágenes (única respuesta)'},
+ }],
+ WITH_OPTIONS = [
+ "MultipleCheckBox",
+ "DropDownList",
+ "RadioButton",
+ "ImageCheckBox",
+ "ImageRadioButton",
+ ],
+ OFFSET_OPTION_ID = 0;
WITH_IMAGES = [];
</script> \ No newline at end of file