CC-4549: Tooltip for source username cannot be shared between input and output settings
-fixed
This commit is contained in:
parent
0084f8ce93
commit
c51fb8a040
|
@ -49,7 +49,7 @@
|
||||||
</dd>
|
</dd>
|
||||||
<dt id="master_username-label">
|
<dt id="master_username-label">
|
||||||
<label class="optional" for="master_username"><?php echo $this->element->getElement('master_username')->getLabel() ?> :
|
<label class="optional" for="master_username"><?php echo $this->element->getElement('master_username')->getLabel() ?> :
|
||||||
<span class='stream_username_help_icon'></span>
|
<span class='master_username_help_icon'></span>
|
||||||
</label>
|
</label>
|
||||||
</dt>
|
</dt>
|
||||||
<dd id="master_username-element">
|
<dd id="master_username-element">
|
||||||
|
|
|
@ -104,7 +104,8 @@ select {
|
||||||
line-height:16px !important;
|
line-height:16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.airtime_auth_help_icon, .custom_auth_help_icon, .stream_username_help_icon, .playlist_type_help_icon {
|
.airtime_auth_help_icon, .custom_auth_help_icon, .stream_username_help_icon,
|
||||||
|
.playlist_type_help_icon, .master_username_help_icon {
|
||||||
cursor: help;
|
cursor: help;
|
||||||
position: relative;
|
position: relative;
|
||||||
display:inline-block; zoom:1;
|
display:inline-block; zoom:1;
|
||||||
|
|
|
@ -333,6 +333,27 @@ $(document).ready(function() {
|
||||||
})
|
})
|
||||||
|
|
||||||
$(".stream_username_help_icon").qtip({
|
$(".stream_username_help_icon").qtip({
|
||||||
|
content: {
|
||||||
|
text: "If your Icecast server expects a username of 'source', this field can be left blank."
|
||||||
|
},
|
||||||
|
hide: {
|
||||||
|
delay: 500,
|
||||||
|
fixed: true
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
border: {
|
||||||
|
width: 0,
|
||||||
|
radius: 4
|
||||||
|
},
|
||||||
|
classes: "ui-tooltip-dark ui-tooltip-rounded"
|
||||||
|
},
|
||||||
|
position: {
|
||||||
|
my: "left bottom",
|
||||||
|
at: "right center"
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
$(".master_username_help_icon").qtip({
|
||||||
content: {
|
content: {
|
||||||
text: "If your live streaming client does not ask for a username, this field should be 'source'."
|
text: "If your live streaming client does not ask for a username, this field should be 'source'."
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue