Skip to content

Instantly share code, notes, and snippets.

@VanDalkvist
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save VanDalkvist/8486ddcc7653c5055094 to your computer and use it in GitHub Desktop.

Select an option

Save VanDalkvist/8486ddcc7653c5055094 to your computer and use it in GitHub Desktop.
Директива-обертка для Tooltip-а из Twitter Bootstrap (source - http://habrahabr.ru/post/164493/)
angular.module("ExperimentsModule", [])
.directive("tbTooltip", function(){
return function(scope, element, iAttrs) {
iAttrs.$observe('title', function(value) {
element.removeData('tooltip');
element.tooltip();
});
}
});
<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