]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates-bootstrap/opac/ReadMe.txt
lp1863252 toward geosort
[Evergreen.git] / Open-ILS / src / templates-bootstrap / opac / ReadMe.txt
1 /////////////////////DATEPICKER///////////////////////////////////////////
2  <div class="input-group date" data-provide="datepicker">
3     <input type="text" class="form-control" name="expire_time"  value="[% expire_time | html %]" data-date-format="mm/dd/yyyy">
4     <div class="input-group-addon">
5         <span class="glyphicon glyphicon-th"></span>
6     </div>
7 </div>
8
9 /////////////////////TOOLTIPS///////////////////////////////////////////
10 <!--data-html allows use of HTML tags in the tooltip-->  
11  <a href="#" title="text to show on tooltip" data-html="true" data-toggle="tooltip">
12     <i class="fas fa-question-circle" aria-hidden="true"></i>
13 </a>
14 <!--This is needed to activate the tooltips on the page and is activated Globally by default in js.tt2-->
15 <script>
16 jQuery(document).ready(function(){
17   jQuery('[data-toggle="tooltip"]').tooltip();
18 });
19 </script>
20