patternfly
Version:
This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.
15 lines (14 loc) • 703 B
HTML
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-3 control-label" for="{{include.id}}">Default <a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-html="true" title="" data-content="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et <a href='#'>dolore magna aliqua</a>." data-placement="top"><span class="fa fa-info-circle"></span></a></label>
<div class="col-sm-9">
<input type="text" id="{{include.id}}" class="form-control">
</div>
</div>
</form>
<script>
// Initialize Popovers
$(document).ready(function() {
$('[data-toggle=popover]').popovers()
});
</script>