UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

48 lines (37 loc) 1.07 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) * Jonathan Weiß (jonathan_rass) ************************************************************************ */ /** * The slider of the SplitPane (used during drag sessions for fast feedback) * * @internal */ qx.Class.define("qx.ui.splitpane.Slider", { extend: qx.ui.core.Widget, /* ***************************************************************************** PROPERTIES ***************************************************************************** */ properties: { // overridden allowShrinkX: { refine: true, init: false }, // overridden allowShrinkY: { refine: true, init: false } } });