From 51c868e693dedfef7de32cc8992c819124531893 Mon Sep 17 00:00:00 2001 From: Scott Bedard Date: Tue, 7 Apr 2015 09:37:02 -0400 Subject: [PATCH] Adds input types to data-track-input options I need this input type, and it would be handy if I could use it with data-track-input. I promise this will be the last time I ask you to touch your priceless faberge egg ;) --- modules/system/assets/js/framework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/assets/js/framework.js b/modules/system/assets/js/framework.js index a81704032..69941e6db 100644 --- a/modules/system/assets/js/framework.js +++ b/modules/system/assets/js/framework.js @@ -390,7 +390,7 @@ if (window.jQuery === undefined) } }) - $(document).on('keyup', 'input[type=text][data-request][data-track-input], input[type=password][data-request][data-track-input]', function(e){ + $(document).on('keyup', 'input[type=text][data-request][data-track-input], input[type=password][data-request][data-track-input], input[type=number][data-request][data-track-input]', function(e){ var $el = $(this), lastValue = $el.data('oc.lastvalue')