Skip to content

Commit

Permalink
Update single quotes to double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdavidmills committed Oct 17, 2023
1 parent b9470a5 commit 7c5844e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion window-management-api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function openWindow(left, top, width, height, url) {
const windowFeatures = `left=${left},top=${top},width=${width},height=${height}`;
const windowRef = window.open(
url,
'_blank', // needed for it to open in a new window
"_blank", // needed for it to open in a new window
windowFeatures,
);

Expand Down

0 comments on commit 7c5844e

Please sign in to comment.