fix setting option always show error tool-tip bug

This commit is contained in:
MaysWind 2016-11-06 15:20:44 +08:00
parent bb767eee9a
commit 9475694a95
2 changed files with 7 additions and 1 deletions

View file

@ -13,7 +13,7 @@
globalStatStorageCapacity: 120,
taskStatStorageCapacity: 300,
lazySaveTimeout: 500,
errorTooltipDelay: 200,
errorTooltipDelay: 500,
notificationInPageTimeout: 2000
}).constant('ariaNgFileTypes', {
video: [

View file

@ -32,6 +32,12 @@
}
$timeout(function () {
var currentValue = scope.optionStatus.getValue();
if (currentValue !== 'failed' && currentValue !== 'error') {
return;
}
angular.element(element).tooltip({
title: $translate.instant(cause, causeParams),
trigger: 'focus',