From d6863ae30616f694c4e382b0637700bce10ad63b Mon Sep 17 00:00:00 2001 From: David Balderston Date: Mon, 10 Nov 2014 11:49:35 -0800 Subject: [PATCH] Change Numeric Keyboard to Keypad Added pattern to html to make the keyboard a keypad Closes #4426 Added pattern="[0-9]*" to the postsPerPage input on general.hbs --- core/client/templates/settings/general.hbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/client/templates/settings/general.hbs b/core/client/templates/settings/general.hbs index b7bbd963ec..2e7d177132 100644 --- a/core/client/templates/settings/general.hbs +++ b/core/client/templates/settings/general.hbs @@ -56,7 +56,8 @@
- {{input id="postsPerPage" name="general[postsPerPage]" focus-out="checkPostsPerPage" value=postsPerPage min="1" max="1000" type="number"}} + {{! `pattern` brings up numeric keypad allowing any number of digits}} + {{input id="postsPerPage" name="general[postsPerPage]" focus-out="checkPostsPerPage" value=postsPerPage min="1" max="1000" type="number" pattern="[0-9]*"}}

How many posts should be displayed on each page