'use strict'; define(['app', 'tooltip'], function (app, tooltip) { app.directive('functionToolTip', ["$log", function ($log) { return { restrict: 'A', link : function ($scope, $element, $attrs) { new tooltip($($element)[0], { placement: $attrs["placement"], // or bottom, left, right, and variations title: $attrs["originalTitle"] }); } } }]) });