Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<link rel="stylesheet" href="https://rawgit.com/bem/bem-components-dist/v4/desktop/bem-components.dev.css">
  
  
  <div class="overlay">
    <div class="boom-popup i-bem" data-bem='{"boom-popup":{}}'>
      <div class="boom-popup__header">Header</div>
      <div class="boom-popup__body">
        <div class="boom-popup__content">123123</div>
      </div>
      <div class="boom-popup__footer">
        <button class="boom-popup__button button button_theme_islands button_size_m button__control i-bem" data-bem='{"button":{}}' role="button" type="button" aria-pressed="false">
   <span class="button__text">Я кнопка</span>
  </button>
      </div>
    </div>
  </div>
 
<script src="https://rawgit.com/bem/bem-components-dist/v4/desktop/bem-components.dev.no-autoinit.js%2Bbh.js"></script>
</body>
</html>
 
/**
 * @module boom-popup
 */
modules.define(
  'boom-popup',
  ['i-bem__dom', 'jquery', 'button'],
  function (provide, BEMDOM, $, Button) {
    /**
         * @exports
         * @class boom-popup
         * @augments BEM
         * @bem
         */
    var BoomPopup = BEMDOM.decl(this.name, /** @lends boom-popup.prototype */{
      onSetMod: {
        'js': {
          /**
                     * @constructs
                     */
          'inited': function () {
            Button.on(this.elem('footer'), 'click', this._onSubmitButtonClick, this);
          }
        }
      },
      _onSubmitButtonClick: function () {
        alert('click');
      }
    }, /** @lends boom-popup */{});
    provide(BoomPopup);
  });
/**
 * Auto initialization on DOM ready
 */
modules.require(
    ['i-bem__dom_init', 'jquery', 'next-tick'],
    function(init, $, nextTick) {
$(function() {
    nextTick(init);
});
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers