Sha256: 238c57c2134ac0d973758c59e25327cd5b01b8f2cc7b251025a85b5ff710c05f

Contents?: true

Size: 915 Bytes

Versions: 5

Compression:

Stored size: 915 Bytes

Contents

class ModalUI {
  constructor($node, options) {
    this.options = $.extend({}, {
      target: options.container || 'body'
    }, options);

    this.$modal = $node;
    this.$backdrop = $('<div class="note-modal-backdrop" />');
  }

  show() {
    if (this.options.target === 'body') {
      this.$backdrop.css('position', 'fixed');
      this.$modal.css('position', 'fixed');
    } else {
      this.$backdrop.css('position', 'absolute');
      this.$modal.css('position', 'absolute');
    }

    this.$backdrop.appendTo(this.options.target).show();
    this.$modal.appendTo(this.options.target).addClass('open').show();

    this.$modal.trigger('note.modal.show');
    this.$modal.off('click', '.close').on('click', '.close', this.hide.bind(this));
  }

  hide() {
    this.$modal.removeClass('open').hide();
    this.$backdrop.hide();
    this.$modal.trigger('note.modal.hide');
  }
}

export default ModalUI;

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
promethee-1.4.13 node_modules/summernote/src/js/lite/ui/ModalUI.js
promethee-1.4.12 node_modules/summernote/src/js/lite/ui/ModalUI.js
promethee-1.4.11 node_modules/summernote/src/js/lite/ui/ModalUI.js
promethee-1.4.10 node_modules/summernote/src/js/lite/ui/ModalUI.js
promethee-1.4.9 node_modules/summernote/src/js/lite/ui/ModalUI.js