Files
OCPP.Core/OCPP.Core.Management/wwwroot/js/site.js
nutchayut 88ddddd7c2 inital
2024-05-31 00:38:31 +07:00

10 lines
368 B
JavaScript

// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
// for details on configuring this project to bundle and minify static web assets.
// Write your JavaScript code.
$(document).ready(function ($) {
$(".table-row").click(function () {
window.document.location = $(this).data("href");
});
});