CC-3250: UI design for mount monitor for media monitor

( Manage Media Folder and Playlist Builder screen)

- adding tooltip and fixed a minor bug
This commit is contained in:
James 2012-04-11 17:24:26 -04:00
parent 1f5f5057bf
commit 0ec58f0bc3
5 changed files with 27 additions and 7 deletions

View file

@ -98,5 +98,23 @@ function setWatchedDirEvents() {
$(document).ready(function() {
setWatchedDirEvents();
$(".ui-icon-alert").qtip({
content: {
text: "This path is currently not accessible."
},
position:{
adjust: {
resize: true,
method: "flip flip"
},
at: "right center",
my: "left top",
viewport: $(window)
},
style: {
classes: "ui-tooltip-dark"
},
show: 'mouseover',
hide: 'mouseout'
});
});