[DOCS] Added off on click for 2024.0 (#23464)

port for <html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns="http://www.w3.org/TR/REC-html40">

<head>

<meta name=ProgId content=OneNote.File>
<meta name=Generator content="Microsoft OneNote 15">
</head>

<body lang=en-US style='font-family:Calibri;font-size:11.0pt'>
<!--StartFragment-->

<div style='direction:ltr'>


https://github.com/openvinotoolkit/openvino/pull/23411
--




</div>

<!--EndFragment-->
</body>

</html>
This commit is contained in:
Andrzej Kopytko 2024-03-14 14:18:49 +01:00 committed by GitHub
parent 01b0930645
commit 1be304b910
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -450,14 +450,14 @@ $(document).ready(function () {
renderData(graph, networkModels, ietype, platforms, kpis, precisions);
$('.modal-footer').show();
$('#modal-display-graphs').show();
$('.edit-settings-btn').on('click', (event) => {
$('.edit-settings-btn').off('click').on('click', (event) => {
$('#modal-configure-graphs').show();
$('#modal-display-graphs').hide();
$('.modal-footer').hide();
$('.chart-placeholder').empty();
});
$('.graph-chart-title-header').on('click', (event) => {
$('.graph-chart-title-header').off('click').on('click', (event) => {
var parent = event.target.parentElement;
if ($(parent).children('.chart-wrap,.empty-chart-container').is(":visible")) {