Skip to content

Commit

Permalink
Merge pull request #1 from mathiasbynens/patch-1
Browse files Browse the repository at this point in the history
Add @min and @max to number inputs
  • Loading branch information
remy committed Jul 16, 2011
2 parents 8d586d7 + 53fe03b commit ba6858f
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions index.html
Expand Up @@ -50,7 +50,7 @@
</select> </select>


<!-- <input type=range id=width step=1 min=10 max=3000 value=640> --> <!-- <input type=range id=width step=1 min=10 max=3000 value=640> -->
<input size=4 type=number step=1 class=width> <input size=4 type=number min=10 step=1 class=width>
Height: Height:
<select id=height step=1 type=range> <select id=height step=1 type=range>
<option>10</option> <option>10</option>
Expand All @@ -65,7 +65,7 @@
<option>3000</option> <option>3000</option>
</select> </select>
<!-- <input type=range step=1 id='height' step=10 min=100 max=3000 value=640> --> <!-- <input type=range step=1 id='height' step=10 min=100 max=3000 value=640> -->
<input size=4 type=number step=1 class=height> <input size=4 type=number min=10 step=1 class=height>
</form> </form>
<div id="info"> <div id="info">
<h1>About responsivepx</h1> <h1>About responsivepx</h1>
Expand Down Expand Up @@ -244,15 +244,14 @@ <h1>About responsivepx</h1>
$(this).focus(); $(this).focus();
}); });


var _gaq = _gaq || []; var _gaq = [['_setAccount', 'UA-1656750-27'], ['_trackPageview']];
_gaq.push(['_setAccount', 'UA-1656750-27']); (function(d, t) {
_gaq.push(['_trackPageview']); var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = g.src = '//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
}(document, 'script'));


(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script> </script>
</body> </body>
</html> </html>

0 comments on commit ba6858f

Please sign in to comment.