Last active
August 29, 2015 14:03
-
-
Save VanDalkvist/8486ddcc7653c5055094 to your computer and use it in GitHub Desktop.
Директива-обертка для Tooltip-а из Twitter Bootstrap (source - http://habrahabr.ru/post/164493/)
This file contains hidden or 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
| angular.module("ExperimentsModule", []) | |
| .directive("tbTooltip", function(){ | |
| return function(scope, element, iAttrs) { | |
| iAttrs.$observe('title', function(value) { | |
| element.removeData('tooltip'); | |
| element.tooltip(); | |
| }); | |
| } | |
| }); | |
This file contains hidden or 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
| <span class="label label-warning" | |
| tb-tooltip | |
| title="You should pay order before {{order.cancelDateTime | date:'dd.MM.yyyy HH:mm'}}" | |
| > | |
| {{order.cancelDateTime | date:'dd.MM.yyyy HH:mm'}} | |
| </span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment