Created
November 20, 2012 09:05
-
-
Save rtincar/4116860 to your computer and use it in GitHub Desktop.
HTML de popover.js
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
<!-- | |
Este fragmento es el html original. En la propiedad 'data-content' se almacena el contenido del popover | |
y el atributo data-toggle="popever" es el selector para lanzar el script | |
--> | |
<div class="port russ" data-content="<p><strong>Russell Smith</strong></p><p>co-founder of Rainforest. I like Japanese cars and bacon. A lot.</p><div class='meta'><a href='https://github.com/ukd1'><i class='font-icon-github'></i></a><a href='https://twitter.com/massivemegalols'><i class='font-icon-twitter-bird'></i></a></div>" data-toggle="popover"> | |
<a href="http://rsmith.co/"></a> | |
</div> | |
<!-- | |
Este es el html generado. | |
--> | |
<div class="popover"> | |
<div class="arrow"></div> | |
<p> | |
<strong>Russell Smith</strong> | |
</p> | |
<p> | |
co-founder of Rainforest. I like Japanese cars and bacon. A lot. | |
</p> | |
<div class="meta"> | |
<a href="https://github.com/ukd1"> | |
<i class="font-icon-github"></i> | |
</a> | |
<a href="https://twitter.com/massivemegalols"> | |
<i class="font-icon-twitter-bird"></i> | |
</a> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment