Created
November 13, 2012 22:26
-
-
Save agustinhaller/4068858 to your computer and use it in GitHub Desktop.
nuevo modal
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
| <ul class="log-in-options"> | |
| <li class="log-in-option"> | |
| <a data-popupTitle="Compartir en Facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://bumbea.com" class="btn-block zocial facebook">Compartir en Facebook</a> | |
| </li> | |
| <li class="log-in-option"> | |
| <a data-popupTitle="Compartir en Twitter" href="https://twitter.com/intent/tweet?text=pepe&via=bumbea_com" class="btn-block zocial twitter">Compartir en Twitter</a> | |
| </li> | |
| <li class="log-in-option"> | |
| <a data-popupTitle="Compartir en Google+" href="https://plus.google.com/u/0/share?url=http://www.youtube.com/watch?v%3D61ScLjYlDKU%26feature%3Dshare%5Cu0026source%3Dyt">Compartir en Google+</a> | |
| </li> | |
| </ul> | |
| $("#social-share-modal").delegate("ul.log-in-options li.log-in-option a", "click", function(event){ | |
| event.preventDefault(); | |
| var this_href = $(this).href(), | |
| popup_title = $(this).attr('data-popupTitle'); | |
| window.open(this_href,popup_title,"menubar=1,resizable=1,width=350,height=250"); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment