mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-22 11:16:12 +10:00
14 lines
521 B
JavaScript
14 lines
521 B
JavaScript
/**
|
|
* angular-strap
|
|
* @version v2.0.0 - 2014-04-07
|
|
* @link http://mgcrea.github.io/angular-strap
|
|
* @author Olivier Louvignes (olivier@mg-crea.com)
|
|
* @license MIT License, http://www.opensource.org/licenses/MIT
|
|
*/
|
|
'use strict';
|
|
angular.module('mgcrea.ngStrap.tooltip').run([
|
|
'$templateCache',
|
|
function ($templateCache) {
|
|
$templateCache.put('tooltip/tooltip.tpl.html', '<div class="tooltip in" ng-show="title"><div class="tooltip-arrow"></div><div class="tooltip-inner" ng-bind="title"></div></div>');
|
|
}
|
|
]); |