app/soc/content/js/tips-081027.js
changeset 2295 8566fb2b8012
parent 2294 be2c150d1a1f
child 2296 ebc4931f0762
--- a/app/soc/content/js/tips-081027.js	Fri May 01 01:37:43 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-$(function() {
-  // Change 'title' to something else first
-  $('tr[title]').each(function() {
-    $(this).attr('xtitle', $(this).attr('title')).removeAttr('title');
-  })
-    .children().children(':input')
-      // Set up event handlers
-      .bt({trigger: ['helperon', 'helperoff'],
-             titleSelector: "parent().parent().attr('xtitle')",
-             killTitle: false,
-             fill: 'rgba(135, 206, 250, .9)',
-             positions: ['bottom', 'top', 'right']
-          })
-      .bind('focus', function() {
-                $(this).trigger('helperon');
-              })
-      .bind('blur', function() {
-                $(this).trigger('helperoff');
-              })
-    .parent()
-      .bind('mouseover', function() {
-                $(this).children(':input').trigger('helperon');
-              })
-      .bind('mouseleave', function() {
-                $(this).children(':input').trigger('helperoff');
-              });
-});
-