If you try to put a tooltip inside of a checkbox it doesn't work. It ends up removing the tooltip from the generated html.
<md-checkbox ng-model="quote.Options.Other.SingleShipment">Single Shipment
<md-tooltip>Some description about this</md-tooltip>
</md-checkbox>
This issue and #1101 maybe linked.
+1, but you can make it work with
<div>
<md-checkbox></md-checkbox>
<md-tooltip md-direction="top">
Hello
</md-tooltip>
</div>
Its fine with tooltip but the events are not working, please help along ng-model because I am trying to toggle container along checkbox checked.
Most helpful comment
+1, but you can make it work with