Skip to content

Commit 3d3ae25

Browse files
committed
JavaScript formatting.
1 parent 1d6d418 commit 3d3ae25

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

tests/bindings/javascript/res/index.html

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -164,33 +164,33 @@
164164
<script src="https://cdn.jsdelivr.net/npm/@lightningchart/lcjs@4.2.2/dist/lcjs.iife.min.js"></script>
165165

166166
<script type="module">
167-
import { reset, run, showPage, updatePlottingAreaAndAxesInfo } from "./res/libopencor.js";
168-
169-
$("#navHome").on("click", function() {
170-
showPage("Home");
171-
});
172-
$("#navSimulation").on("click", function() {
173-
showPage("Simulation");
174-
});
175-
$("#navVersions").on("click", function() {
176-
showPage("Versions");
177-
});
178-
179-
$("#reset").on("click", function() {
180-
reset();
181-
});
182-
183-
$("#xAxis").on("change", function() {
184-
updatePlottingAreaAndAxesInfo();
185-
});
186-
187-
$("#yAxis").on("change", function() {
188-
updatePlottingAreaAndAxesInfo();
189-
});
190-
191-
$("#run").on("click", function() {
192-
run();
193-
});
167+
import { reset, run, showPage, updatePlottingAreaAndAxesInfo } from './res/libopencor.js';
168+
169+
$('#navHome').on('click', function () {
170+
showPage('Home');
171+
});
172+
$('#navSimulation').on('click', function () {
173+
showPage('Simulation');
174+
});
175+
$('#navVersions').on('click', function () {
176+
showPage('Versions');
177+
});
178+
179+
$('#reset').on('click', function () {
180+
reset();
181+
});
182+
183+
$('#xAxis').on('change', function () {
184+
updatePlottingAreaAndAxesInfo();
185+
});
186+
187+
$('#yAxis').on('change', function () {
188+
updatePlottingAreaAndAxesInfo();
189+
});
190+
191+
$('#run').on('click', function () {
192+
run();
193+
});
194194
</script>
195195
</body>
196196
</html>

0 commit comments

Comments
 (0)