Sha256: b6637fdb0115a29fe8e5449c97b1048a2f6129050d15f1da629ce3a11228dd22

Contents?: true

Size: 994 Bytes

Versions: 54

Compression:

Stored size: 994 Bytes

Contents

/**
 * File attachments helper-wrapper.
 *
 * @author Htmlstream
 * @version 1.0
 *
 */
;(function ($) {
  'use strict';

  $.HSCore.helpers.HSFileAttachments = {
    /**
     * File attachment.
     *
     * @return undefined
     */
    init: function () {
      var collection = $('.u-file-attach--v1 input[type="file"]:enabled, .u-file-attach--v2 input[type="file"]:enabled');

      if (!collection.length) return;

      collection.each(function () {
        var $this = $(this),
          $thisParent = $this.closest('.u-file-attach--v1, .u-file-attach--v2'),
          textInputLength = $thisParent.find('input[type="text"]:enabled');

        $this.on('change', function () {
          var thisVal = $this.val();

          if (!textInputLength.length) {
            $thisParent.find('.js-value').text(thisVal.replace(/.+[\\\/]/, ''));
          } else {
            $thisParent.find('input[type="text"]:enabled').val(thisVal);
          }
        });
      });
    }
  };
})(jQuery);

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
jekyll-theme-glueckkanja-1.2.29 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.28 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.27 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.26 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.25 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.24 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.23 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.22 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.21 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.20 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.19 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.18 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.17 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.16 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.15 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.14 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.13 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.12 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.11 assets/js/helpers/hs.file-attachments.js
jekyll-theme-glueckkanja-1.2.10 assets/js/helpers/hs.file-attachments.js