1.0.6 • Published 7 years ago

resize-handler v1.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Resize Handler

Install

bower install resize-handler --save
npm install resize-handler --save

Example

<!DOCTYPE html>
<html lang="en">
<head>
    <script src="resizeHandler.js"></script>
    <meta charset="UTF-8">
    <title>Resize Handler</title>
</head>
<body>
    <script>
        window.ResizeHandler.register(function() {
            console.log('resize A');
        });
        window.ResizeHandler.register(function() {
            console.log('resize B');
        });
    </script>
</body>
</html>