script.js 228 B

12345678910111213
  1. require([
  2. 'jquery',
  3. 'jquery_chosen'
  4. ], function ($) {
  5. 'use strict';
  6. $(document).ready(function(){
  7. setTimeout(function(){
  8. $("#dailydeal_sw_product_sku").chosen();
  9. },1000);
  10. });
  11. });