Created
October 17, 2012 21:56
-
-
Save meandavejustice/3908542 to your computer and use it in GitHub Desktop.
only displaying "legend"
This file contains 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
<script id="legend" type="text/x-template"> | |
<ul> | |
<li class='panel-item legend-icon-my'> | |
Add to my events</li> | |
<li class='panel-item legend-icon-odds'> | |
odds of winning</li> | |
<li class='panel-item legend-flag-hot'> | |
Hot</li> | |
<li class='panel-item legend-flag-pick-staff'> | |
Staff Pick</li> | |
</ul> | |
</script> | |
$('#legend').popover({ | |
offset: 10, | |
trigger: 'click', | |
animate: true, | |
html: true, | |
template: '<div class="popover" onmouseover="$(this).mouseleave(function() {$(this).hide(); });"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>', | |
content: $('#legend').text()}) | |
.click(function(e) { | |
$(this).popover('show'); | |
}); | |
<div class="indicator"> | |
<ul> | |
<li> | |
<a href="#" class="js-noop" id="legend" data-placement="top"> | |
LEGEND | |
</a> | |
</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment