-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIXED: Component: SGNAtom: Not able to load some pages (especially, default page)
- Loading branch information
Showing
12 changed files
with
427 additions
and
158 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- | ||
~ Copyright (c) 2022-2023 SGNetworks. All rights reserved. | ||
~ | ||
~ The software is an exclusive copyright of "SGNetworks" and is provided as is exclusively with only "USAGE" access. "Modification", "Alteration", "Re-distribution" is completely prohibited. | ||
~ VIOLATING THE ABOVE TERMS IS A PUNISHABLE OFFENSE WHICH MAY LEAD TO LEGAL CONSEQUENCES. | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>SGNAtom :: SGNUIKit Demos</title> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> | ||
<!--<script src="/dist/js/SGNUIKit.loader.js"></script>--> | ||
<script src="/src/js/SGNUIKit.loader.js"></script> | ||
</head> | ||
<body> | ||
<div id="sgn-atom-root" sgnatom-home="atom.index.html"></div> | ||
<script> | ||
SGNUIKit.setOnReadyListener((isReady) => ((el) => SGNAtom.create(el).with('a', {resetHead: true, showErrors: true, interceptErrors: true}))('#sgn-atom-root')); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!-- | ||
~ Copyright (c) 2022-2023 SGNetworks. All rights reserved. | ||
~ | ||
~ The software is an exclusive copyright of "SGNetworks" and is provided as is exclusively with only "USAGE" access. "Modification", "Alteration", "Re-distribution" is completely prohibited. | ||
~ VIOLATING THE ABOVE TERMS IS A PUNISHABLE OFFENSE WHICH MAY LEAD TO LEGAL CONSEQUENCES. | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>SGNAtom :: SGNUIKit Demos</title> | ||
</head> | ||
<body> | ||
<main> | ||
<div class="sgn-container"> | ||
<div class="card"> | ||
<div class="card-header">Demos</div> | ||
<div class="card-body p-0"> | ||
<div class="list-group"> | ||
<div class="list-group-title">Forms</div> | ||
<div class="list-view"> | ||
<a class="list-link" href="switch.html">Switches</a> | ||
<a class="list-link" href="buttons.html">Buttons</a> | ||
</div> | ||
</div> | ||
<div class="list-group"> | ||
<div class="list-group-title">Components</div> | ||
<div class="list-view"> | ||
<a class="list-link" href="cards.html">Cards</a> | ||
<a class="list-link" href="modals.html">Modals</a> | ||
<a class="list-link" href="tabs.html">Tabs</a> | ||
<a class="list-link" href="windows.html">Windows</a> | ||
</div> | ||
</div> | ||
<div class="list-group"> | ||
<div class="list-group-title">Utilities</div> | ||
<div class="list-view"> | ||
<a class="list-link" href="text-colors.html">Text Colours</a> | ||
<a class="list-link" href="gradients.html">Gradients</a> | ||
<a class="list-link" href="shapes.html">Shapes</a> | ||
<a class="list-link" href="shadows.html">Shadows</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card-footer jc-center">Copyright © SGNetworks 2022. All rights reserved.</div> | ||
</div> | ||
</div> | ||
</main> | ||
<script> | ||
console.log('well'); | ||
$(() => $('main').on('hover', () => console.log('well2'))); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.