Topic: select all text when you click on item input box
If u want to select all text/number with one click from item input box (very handy on mobile) add this:
includes/ui/ui_input.php around line 749 replace:
echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
with:
echo "<input onClick='this.select();' class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
no more backspace or double click to change values.