-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,22 +31,23 @@ | |
<div class="row"> | ||
<div> | ||
<input type="checkbox" id="noProxyCheckBox"> | ||
<label for="noProxyCheckBox">I don't want proxy setup (recommended)</label> | ||
<label for="noProxyCheckBox">No complicated Proxy Setup (recommended)</label> | ||
</div> | ||
</div> | ||
|
||
<div id="serverSetup"> | ||
<div class="row"> | ||
<div> | ||
<label class="form-label" for="actualServer">Actual Server Address</label> | ||
<label class="form-label" for="actualServer">Original Server Address</label> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ritwickdey
Author
Owner
|
||
<input class="form-control" type="text" id="actualServer" placeholder="http://Your Server Address"> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div> | ||
<label class="form-label" for="liveServer">Live Server Address</label> | ||
<input class="form-control" type="text" id="liveServer" placeholder="Eg. http://127.0.0.1:5500/"> | ||
<label class="form-label" for="liveServerPort">Live Server Port</label> | ||
<input class="form-control" type="number" id="liveServerPort" value="5500"> | ||
<button type="button" class="btn" id="liveServerConnBtn">Test Connection</button> | ||
<a class="short-right-label" target="_blank" href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer">Install Live Server</a> | ||
</div> | ||
</div> | ||
|
@@ -57,8 +58,9 @@ | |
</div> | ||
<div class="footer"> | ||
<a target="_blank" href="https://github.com/ritwickdey/live-server-web-extension">Need Help?</a> | ||
<p>NOTE: You need two server. Live Server will give `live` power of your existing server (May be Wamp, XAMPP, IIS | ||
or Node.js)</p> | ||
<p>NOTE: You need two server. Live Server will give `live` power of your existing server (May be Wamp, XAMPP, IIS or | ||
Node.js) | ||
</p> | ||
</div> | ||
<script src="./popup.js"></script> | ||
</body> | ||
|
I have a thought regarding client-side and server-side addresses. The idea I have is that the extension will work for either server-side or client-side.
What do you think? Is it clearer to specify:
client-side address
andserver-side address
, instead oflive server address
andactual server address
? Or can they become misleading?I see that you switch to
original
here fromactual
, which I think is much clearer than using the wordactual
.