-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18948d8
commit 529e8b3
Showing
13 changed files
with
189 additions
and
33 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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
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
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
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,38 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="../styles/minstyle.io.css"> <!-- https://minstyle.io v0.2.3 --> | ||
<link rel="stylesheet" href="../styles/light.css"> | ||
<script src="../app/light.js"></script> | ||
</head> | ||
|
||
<body> | ||
<form> | ||
<fieldset> | ||
<div class="col-s-12"> | ||
<span class="ms-badge ms-gradient"> | ||
<script>echo("Live Preview URL")</script></span> | ||
<input type="url" id="liveViewUrl" class="ms-yellow" style="background-color:#d4ebcd"> | ||
</div> | ||
<div class="col-s-12"> | ||
<input class="ms-btn ms-yellow ms-large" type="submit" id="set" onclick="global.liveViewUrl = document.getElementById('liveViewUrl').value;prefs.setLiveViewUrl();nw.Window.get().close();"> | ||
<a class="ms-btn ms-blue ms-large" onclick="prefs.setLiveViewUrlDefault();nw.Window.get().close();"> | ||
<script>echo("Default")</script></a> | ||
<a class="ms-btn ms-green ms-large" onclick="prefs.showCurrentLiveViewUrl();"> | ||
<script>echo("Current Value")</script></a> | ||
<a class="ms-btn ms-border-bottom ms-red ms-large" onclick="nw.Window.get().close()"> | ||
<script>echo("Cancel")</script></a> | ||
</div> | ||
</fieldset> | ||
</form> | ||
<script> | ||
document.getElementById("set").value = lang.echo("Set"); | ||
document.title = lang.echo("Live Preview URL Configuration"); | ||
document.getElementById("liveViewUrl").placeholder = lang.echo("For ex.: http://10.0.0.1:60152"); | ||
</script> | ||
</body> | ||
|
||
</html> |