chore(release): v0.9.23

This commit is contained in:
Adam Bradley
2014-02-05 10:50:24 -06:00
committed by Andy Joslin
parent bc927e57e7
commit 2f6ac4a986
12 changed files with 220 additions and 94 deletions

View File

@@ -19,11 +19,11 @@
padding: 8px !important;
}
.list {
margin: 5px !important;
margin: 2px !important;
}
.button {
line-height: 18px !important;
min-height: 30px !important;
line-height: 16px !important;
min-height: 28px !important;
}
.dot {
position: absolute;
@@ -76,6 +76,9 @@
<button id="clear">Clear</button>
<button id="stop">Stop</button>
<a href="tapInputs.html">Tap Inputs</a> -
<a href="/test/">CSS Tests</a> -
<a href="./">All Tests</a>
<div id="logs"></div>
@@ -165,6 +168,9 @@
document.addEventListener('mouseup', function(){
console.log('mouseup');
});
document.addEventListener('mousemove', function(event){
console.log('mousemove', 'clientX: ' + event.clientX, 'clientY: ' + event.clientY);
});
document.addEventListener('click', function(event){
console.log('click', 'clientX: ' + event.clientX, 'clientY: ' + event.clientY);
});

View File

@@ -90,6 +90,22 @@
Watch Count: {{ radioWatchCount }}
</div>
<div class="item item-divider">
Other Tests
</div>
<a href="clickTests.html" class="item">
Click Tests
</a>
<a href="/test/" class="item">
CSS Tests
</a>
<a href="./" class="item">
All JS Tests
</a>
</div>
</form>