Rocky_Mountain_Vending/.pnpm-store/v10/files/e8/a0966be1e58c566c7549cdbf4f32463a106c29f2a3f97c42fb36510868ea1316336af6e3fa36dec26779c8fab8a16579395d8e4727a0c247d65d293b5dd5aa
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

32 lines
730 B
Text

<html>
<head>
<title>Debounce Component</title>
</head>
<body>
Resize the window!
<br>
<a id='cancel' href='#'>Cancel Print</a>
<br>
<a id='now' href='#'>Print Now</a>
<script src="build/build.js" type="text/javascript"></script>
<script type="text/javascript">
var debounce = require('debounce');
window.onresize = debounce(resize, 2000);
document.getElementById('cancel').onclick = window.onresize.clear;
document.getElementById('now').onclick = printNow;
function resize(e) {
console.log('height', window.innerHeight);
console.log('width', window.innerWidth);
}
function printNow(e) {
window.onresize.clear();
resize();
}
</script>
</body>
</html>