Created
April 30, 2014 17:11
-
-
Save erezLieberman/c7980d5e80a1bb6187f9 to your computer and use it in GitHub Desktop.
//remove the dot if there is just one image from royal slider
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
| $( window ).load( function(){ | |
| //remove the dot if there is just one image from royal slider | |
| var n = $( ".rsBullet" ).length; | |
| if(n < 2){ | |
| $( ".rsBullets" ).remove(); | |
| } | |
| //end of window.load function | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment