public.js 263 B

1234567891011121314
  1. /**
  2. * Public JavaScript for the QDR Temporary Shared Storage plugin
  3. */
  4. (function($) {
  5. 'use strict';
  6. // Document ready
  7. $(function() {
  8. // Add focus to first input
  9. $('.qdr-tss-download-form input:first').focus();
  10. });
  11. })(jQuery);