Added placeholder scripting
This commit is contained in:
@@ -187,6 +187,11 @@ body {
|
|||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.invisible-button {
|
||||||
|
background-color: #00000000;
|
||||||
|
border: #00000000;
|
||||||
|
}
|
||||||
|
|
||||||
.action-button.active {
|
.action-button.active {
|
||||||
background: #2A93B0;
|
background: #2A93B0;
|
||||||
border: 1px solid #7ed0eb;
|
border: 1px solid #7ed0eb;
|
||||||
|
|||||||
@@ -40,6 +40,12 @@ $('#btn-newRow').click(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$('#btn-copy').click(
|
||||||
|
()=> {
|
||||||
|
console.log("btn-copy");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Functions segment
|
Functions segment
|
||||||
*/
|
*/
|
||||||
@@ -145,9 +151,11 @@ function loadFetchedMessage(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fillStaticFields(uuid, contentType, body, httpStatus){
|
function fillStaticFields(uuid, contentType, body, httpStatus){
|
||||||
|
const copyButton = '<button id="btn-copy" class="invisible-button">Copy</button>';
|
||||||
let link = createLink(uuid);
|
let link = createLink(uuid);
|
||||||
let linkHtml = '<a class="hyperlink" target="_blank" href="'+link+'">'+link+'</a>';
|
let linkHtml = '<a class="hyperlink" target="_blank" href="'+link+'">'+link+'</a>' + copyButton;
|
||||||
$('#messageLink').html(linkHtml);
|
$('#messageLink').attr("href", link);
|
||||||
|
$('#messageLink').html(link);
|
||||||
$('#httpStatus').val(httpStatus);
|
$('#httpStatus').val(httpStatus);
|
||||||
$('#typeSelector').val(contentType);
|
$('#typeSelector').val(contentType);
|
||||||
$('#bodyEditor').val(body);
|
$('#bodyEditor').val(body);
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
<!-- link -->
|
<!-- link -->
|
||||||
<div>
|
<div>
|
||||||
<label for="messageLink" class="block-display">Link</label>
|
<label for="messageLink" class="block-display">Link</label>
|
||||||
<div id="messageLink" class="display-space-between bordered-field max-width with-padding disabled-background tooltipped"><a class="hyperlink" href="www.google.com" target="_blank">www.google.com</a><p>dupaaaaaa</p></div>
|
<div class="display-space-between bordered-field max-width with-padding disabled-background tooltipped"><a id="messageLink" class="hyperlink" href="www.google.com" target="_blank">www.google.com</a><button id="btn-copy" class="invisible-button">Copy</button></div>
|
||||||
<!-- <input id="messageLink" disabled class="bordered-field max-width with-padding" value="http://yourlink.com/r/api/mock/blablabla"> -->
|
<!-- <input id="messageLink" disabled class="bordered-field max-width with-padding" value="http://yourlink.com/r/api/mock/blablabla"> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="display-space-between max-width">
|
<div class="display-space-between max-width">
|
||||||
|
|||||||
Reference in New Issue
Block a user