summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/input
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-27 17:52:33 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-27 17:52:33 +0100
commit9f9c4975828f67b8ef2729193bc48399ff0465b3 (patch)
treedadf3cba07e230c51493dfffa6c6d9c360f87351 /module/web/static/js/views/input
parenttooltips for input elements (diff)
downloadpyload-9f9c4975828f67b8ef2729193bc48399ff0465b3.tar.xz
animations on settings page, highlight modified fields
Diffstat (limited to 'module/web/static/js/views/input')
-rw-r--r--module/web/static/js/views/input/inputView.js4
-rw-r--r--module/web/static/js/views/input/textInput.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/module/web/static/js/views/input/inputView.js b/module/web/static/js/views/input/inputView.js
index 56087c516..ed78d2d30 100644
--- a/module/web/static/js/views/input/inputView.js
+++ b/module/web/static/js/views/input/inputView.js
@@ -22,15 +22,15 @@ define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) {
render: function() {
this.renderInput();
-
// data for tooltips
if (this.description && this.tooltip) {
this.$el.data('content', this.description);
+ // TODO: render default value in popup?
// this.$el.data('title', "TODO: title");
this.$el.popover({
placement: 'right',
trigger: 'hover',
- delay: { show: 500, hide: 100 }
+// delay: { show: 500, hide: 100 }
});
}
diff --git a/module/web/static/js/views/input/textInput.js b/module/web/static/js/views/input/textInput.js
index 36cdf9f06..3a6631a0b 100644
--- a/module/web/static/js/views/input/textInput.js
+++ b/module/web/static/js/views/input/textInput.js
@@ -5,7 +5,7 @@ define(['jquery', 'backbone', 'underscore', './inputView'], function($, Backbone
// TODO
tagName: 'input',
events: {
- 'keypress': 'onChange',
+ 'keyup': 'onChange',
'focus': 'showTooltip',
'focusout': 'hideTooltip'
},