UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

51 lines (39 loc) 1.06 kB
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2004-2011 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: * Tino Butz (tbtz) ************************************************************************ */ /** * Shows a title text for {@link Form} or {@link Group}. */ qx.Class.define("qx.ui.mobile.form.Title", { extend: qx.ui.mobile.basic.Label, properties: { wrap: { refine: true, init: false }, // overridden defaultCssClass: { refine: true, init: "form-title" } }, /* ***************************************************************************** MEMBERS ***************************************************************************** */ members: { // overridden _getTagName() { return "h2"; } } });