mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 06:04:12 +01:00
9 lines
411 B
Twig
9 lines
411 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{% if oUIBlock.GetShowFilename() %}
|
|
$('#{{ oUIBlock.GetId() }}').bind('change', function() {
|
|
var fileName = $(this).val().replace(/^.*[\\\/]/, '');
|
|
fileName = $('<div/>').text(fileName).html();
|
|
$('#{{ oUIBlock.GetId() }}-file-name').html(fileName);
|
|
});
|
|
{% endif %} |