UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

46 lines (35 loc) 1.14 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2004-2008 1&1 Internet AG, Germany, http://www.1und1.de License: MIT: https://opensource.org/licenses/MIT See the LICENSE file in the project's top-level directory for details. Authors: * Sebastian Werner (wpbasti) ************************************************************************ */ /** * For a GUI application on a traditional, HTML-dominated web page. * * The ideal environment for typical portal sites which use just a few qooxdoo * widgets. {@link qx.ui.root.Inline} can be used to embed qooxdoo widgets * into the page flow. * * @require(qx.core.Init) */ qx.Class.define("qx.application.Inline", { extend : qx.application.AbstractGui, /* ***************************************************************************** MEMBERS ***************************************************************************** */ members : { _createRootWidget : function() { return new qx.ui.root.Page(document); } } });