Sha256: 84554009a5da155efd6d4e877c06a99b48aaedf8b830b3195105ad115e0488db

Contents?: true

Size: 532 Bytes

Versions: 11

Compression:

Stored size: 532 Bytes

Contents

$('.presentation-search .compact fieldset label').livequery(function() {
  var label = $(this);
  var field = label.siblings('input');
  if (!field[0] || field.attr('type') == 'checkbox') return;
  
  label.addClass('overlabel');
  
  var hide_label = function() { label.css('text-indent', '-1000px') };
  var show_label = function() { this.value || label.css('text-indent', '0px') };
  
  $(field).focus(hide_label).blur(show_label).each(hide_label).each(show_label);
  $(label).click(function() {field.focus()});
});

Version data entries

11 entries across 5 versions & 1 rubygems

Version Path
presenting-3.0.0 test/r3/public/javascripts/presenting/search.js
presenting-3.0.0 app/assets/javascripts/presenting/search.js
presenting-3.0.0 test/r4/public/javascripts/presenting/search.js
presenting-2.1.0 test/r3/public/javascripts/presenting/search.js
presenting-2.1.0 app/assets/javascripts/search.js
presenting-2.0.3 test/r3/public/javascripts/presenting/search.js
presenting-2.0.3 app/assets/javascripts/search.js
presenting-2.0.2 test/r3/public/javascripts/presenting/search.js
presenting-2.0.2 app/assets/javascripts/search.js
presenting-2.0.1 app/assets/javascripts/search.js
presenting-2.0.1 test/r3/public/javascripts/presenting/search.js