Last active
August 29, 2015 14:16
-
-
Save tatarjr/3f18e4560f9dd274ad37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Call & init | |
| $(document).ready(function(){ | |
| $('.ba-slider').each(function(){ | |
| var cur = $(this); | |
| // Adjust the slider | |
| var width = cur.width()+'px'; | |
| cur.find('.resize img').css('width', width); | |
| // Bind dragging events | |
| drags(cur.find('.handle'), cur.find('.resize'), cur); | |
| }); | |
| }); | |
| // Update sliders on resize. | |
| // We all do it: i.imgur.com/YkbaV.gif | |
| $(window).resize(function(){ | |
| $('.ba-slider').each(function(){ | |
| var cur = $(this); | |
| var width = cur.width()+'px'; | |
| cur.find('.resize img').css('width', width); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment