Use uib-tooltip instead of the non angular aware bootstrap one
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -488,7 +488,4 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
|
||||
$(this).find("[autofocus]:first").focus();
|
||||
});
|
||||
});
|
||||
|
||||
// setup tooltips (opt-in)
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
}]);
|
||||
|
||||
Reference in New Issue
Block a user