In the current project, there is a tabs controller template that enables user navigation to different views.
Using the 720KB tooltip in the Ionic project has been successful for all elements except for the ion tabs in the tabs controller template.
To implement 720KB tooltip, simply add
tooltips tooltip-template="I'm a tooltip!"
to any element to have a tooltip on hover for that specific element.
Below is the code snippet from the Ionic tab controller:
<ion-view id="page1" ng-app="720kb">
<ion-tab title="Introduction" icon-off="acc-intro-off" icon-on="acc-intro-on" href="#/page1/page3" id="tabsController-tab3">
<ion-nav-view name="tab2"></ion-nav-view>
</ion-tab>
<ion-tab title="Awards " icon-off="acc-category-off" icon-on="acc-category-on" href="#/page1/page4" id="tabsController-tab4">
<ion-nav-view name="tab3"></ion-nav-view>
</ion-tab>
<ion-tab title="Awards Vote" icon-off="acc-vote-off" icon-on="acc-vote-on" href="#/page1/page6" id="tabsController-tab5">
<ion-nav-view name="tab6"></ion-nav-view>
</ion-tab>
<ion-tab title="Award Nomination" icon-off="acc-nomination-off" icon-on="acc-nomination-on" href="#/page1/page5" id="tabsController-tab6">
<ion-nav-view name="tab5"></ion-nav-view>
</ion-tab>
<ion-tab title="Result Category" icon-off="acc-results-off" icon-on="acc-results-on" href="#/page1/page7" id="tabsController-tab7">
<ion-nav-view name="tab7"></ion-nav-view>
</ion-tab>
Despite attempting to add a 720KB tooltip to the first ion tab, it does not appear on hover. Inspecting in Chrome reveals that the tooltip is generated.
An example of it working on another element can be seen here.
However, when attaching
tooltips tooltip-template="I'm a tooltip!"
to an ion-tab, the tooltip does not display, even though the HTML is generated as shown here.