From 6409003b3f4d6faaffb61312d26b7faeddb68459 Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Thu, 15 Mar 2012 16:29:52 +0100 Subject: [PATCH] CC-3174 : showbuilder putting qtip on missing file alert. --- airtime_mvc/public/js/airtime/library/spl.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/airtime_mvc/public/js/airtime/library/spl.js b/airtime_mvc/public/js/airtime/library/spl.js index 38771d4ce..982d0d79a 100644 --- a/airtime_mvc/public/js/airtime/library/spl.js +++ b/airtime_mvc/public/js/airtime/library/spl.js @@ -752,4 +752,24 @@ $(document).ready(function() { AIRTIME.library.libraryInit(); AIRTIME.playlist.init(); + + pl.find(".ui-icon-alert").qtip({ + content: { + text: "File does not exist on disk..." + }, + position:{ + adjust: { + resize: true, + method: "flip flip" + }, + at: "right center", + my: "left top", + viewport: $(window) + }, + style: { + classes: "ui-tooltip-dark" + }, + show: 'mouseover', + hide: 'mouseout' + }); });