Skip to content

Commit

Permalink
Add semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-yau-ttd committed Feb 28, 2024
1 parent 231e081 commit ab379e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webroot/adm/client-key.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h3>Output</h3>
$(document).ready(function () {

$('#searchSiteId').on('click', function () {
var siteId = encodeURIComponent($('#searchBySiteId').val())
var siteId = encodeURIComponent($('#searchBySiteId').val());
if (!siteId) {
$('#errorOutput').html("Required Parameter: site_id")
return;
Expand Down
2 changes: 1 addition & 1 deletion webroot/adm/site.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h3>Output</h3>
$('#errorOutput').html("Required Parameters: site_id")
return;
}
var url = `/api/site/${siteId}`
var url = `/api/site/${siteId}`;

doApiCall('GET', url, '#standardOutput', '#errorOutput');
});
Expand Down

0 comments on commit ab379e8

Please sign in to comment.