Use uib-tooltip instead of the non angular aware bootstrap one

This commit is contained in:
Johannes Zellner
2016-07-27 16:52:36 +02:00
parent dfc0598ec9
commit 02fcb749aa
2 changed files with 1 additions and 4 deletions

View File

@@ -317,7 +317,7 @@
<div class="row animateMeOpacity ng-hide" ng-show="installedApps.length > 0">
<div class="col-sm-1 grid-item" ng-repeat="app in installedApps | orderBy:'location'">
<div style="background-color: white;" class="highlight grid-item-content" data-toggle="tooltip" data-placement="bottom" title="{{ app.message }}">
<div style="background-color: white;" class="highlight grid-item-content" uib-tooltip="{{ app.message }}">
<a ng-href="{{app | applicationLink}}" ng-click="(app | installError) === true && showError(app)" target="_blank">
<div class="grid-item-top">
<div class="row">

View File

@@ -488,7 +488,4 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
$(this).find("[autofocus]:first").focus();
});
});
// setup tooltips (opt-in)
$('[data-toggle="tooltip"]').tooltip();
}]);