Revision: 2596
          https://sourceforge.net/p/mrbs/code/2596/
Author:   tbleher
Date:     2012-12-16 14:11:26 +0000 (Sun, 16 Dec 2012)
Log Message:
-----------
Followup r2590: Add room description as tooltip for room list in header (also 
in select mode)
    
Newer browsers seem to support tooltips for select options - nice :)

Revision Links:
--------------
    https://sourceforge.net/p/mrbs/code/2590/

Modified Paths:
--------------
    mrbs/trunk/web/functions.inc

Modified: mrbs/trunk/web/functions.inc
===================================================================
--- mrbs/trunk/web/functions.inc        2012-12-15 08:52:22 UTC (rev 2595)
+++ mrbs/trunk/web/functions.inc        2012-12-16 14:11:26 UTC (rev 2596)
@@ -2126,7 +2126,7 @@
       for ($i = 0; ($row = sql_row_keyed($res, $i)); $i++)
       {
         $selected = ($row['id'] == $current) ? "selected=\"selected\"" : "";
-        $out_html .= "<option $selected value=\"". $row['id']. "\">" . 
htmlspecialchars($row['room_name']) . "</option>\n";
+        $out_html .= "<option $selected value=\"". $row['id']. "\" title=\"". 
htmlspecialchars($row['description'])."\">" . 
htmlspecialchars($row['room_name']) . "</option>\n";
       }
       // Note:  the submit button will not be displayed if JavaScript is 
enabled
       $out_html .= "</select>\n" .
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to