Sha256: e1d754f662fc8595b649e27616d307f1bd7eb56df8356b78457b27391dfeaf66

Contents?: true

Size: 337 Bytes

Versions: 6

Compression:

Stored size: 337 Bytes

Contents

({
  createPopupWindow(html_to_show, title_to_show, height_to_use, width_to_use) {
    Ext.create("Ext.Window", {
      height: height_to_use,
      minWidth: width_to_use,
      autoWidth: true,
      layout: "fit",
      modal: false,
      autoScroll: true,
      html: html_to_show,
      title: title_to_show
    }).show();
  }
});

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
marty-14.3.0 app/components/marty/component_util/client/component_util.js
marty-14.0.0 app/components/marty/component_util/client/component_util.js
marty-13.0.2 app/components/marty/component_util/client/component_util.js
marty-11.0.0 app/components/marty/component_util/client/component_util.js
marty-10.0.3 app/components/marty/component_util/client/component_util.js
marty-10.0.2 app/components/marty/component_util/client/component_util.js