BigW Consortium Gitlab

flash.js 1018 Bytes
Newer Older
Fatih Acet committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
(function() {
  this.Flash = (function() {
    var hideFlash;

    hideFlash = function() {
      return $(this).fadeOut();
    };

    function Flash(message, type, parent) {
      var flash, textDiv;
      if (type == null) {
        type = 'alert';
      }
      if (parent == null) {
        parent = null;
      }
      if (parent) {
        this.flashContainer = parent.find('.flash-container');
      } else {
        this.flashContainer = $('.flash-container-page');
      }
      this.flashContainer.html('');
      flash = $('<div/>', {
        "class": "flash-" + type
      });
      flash.on('click', hideFlash);
      textDiv = $('<div/>', {
        "class": 'flash-text',
        text: message
      });
      textDiv.appendTo(flash);
      if (this.flashContainer.parent().hasClass('content-wrapper')) {
        textDiv.addClass('container-fluid container-limited');
      }
      flash.appendTo(this.flashContainer);
      this.flashContainer.show();
    }

    return Flash;

  })();

}).call(this);