Merge pull request #5026 from nextcloud/filename-input-tooltip-stable12
[stable12] Make file name input tooltip error text change
This commit is contained in:
commit
b911033e7a
|
@ -2140,6 +2140,7 @@
|
|||
} catch (error) {
|
||||
input.attr('title', error);
|
||||
input.tooltip({placement: 'right', trigger: 'manual'});
|
||||
input.tooltip('fixTitle');
|
||||
input.tooltip('show');
|
||||
input.addClass('error');
|
||||
}
|
||||
|
@ -2154,6 +2155,7 @@
|
|||
} catch (error) {
|
||||
input.attr('title', error);
|
||||
input.tooltip({placement: 'right', trigger: 'manual'});
|
||||
input.tooltip('fixTitle');
|
||||
input.tooltip('show');
|
||||
input.addClass('error');
|
||||
}
|
||||
|
|
|
@ -156,6 +156,7 @@
|
|||
} catch (error) {
|
||||
$input.attr('title', error);
|
||||
$input.tooltip({placement: 'right', trigger: 'manual'});
|
||||
$input.tooltip('fixTitle');
|
||||
$input.tooltip('show');
|
||||
$input.addClass('error');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue