You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2015/02/16 17:03:34 UTC

fauxton commit: updated refs/heads/master to ff1922a

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 92834eae0 -> ff1922a02


Fix for polling interval label not updating

Due to a bug in IE11, the onInput event doesn't fire on the range
slider on incremental changes. This adds both onInput and onChange
events to ensure it works for all browser environments.

Closes COUCHDB-2579


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/ff1922a0
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/ff1922a0
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/ff1922a0

Branch: refs/heads/master
Commit: ff1922a022762ab8b416d164118469846d0203fd
Parents: 92834ea
Author: Ben Keen <be...@gmail.com>
Authored: Fri Feb 13 12:07:13 2015 -0800
Committer: Ben Keen <be...@gmail.com>
Committed: Mon Feb 16 08:03:18 2015 -0800

----------------------------------------------------------------------
 app/addons/activetasks/views.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/ff1922a0/app/addons/activetasks/views.js
----------------------------------------------------------------------
diff --git a/app/addons/activetasks/views.js b/app/addons/activetasks/views.js
index d8f7117..6e54b0d 100644
--- a/app/addons/activetasks/views.js
+++ b/app/addons/activetasks/views.js
@@ -117,7 +117,8 @@ function (app, FauxtonAPI, ActiveTasks) {
 
     events: {
       'click .task-tabs li': 'requestByType',
-      'input #pollingRange': 'changePollInterval'
+      'input #pollingRange': 'changePollInterval',
+      'change #pollingRange': 'changePollInterval'
     },
 
     serialize: function () {