UNPKG

@qooxdoo/framework

Version:

The JS Framework for Coders

32 lines (22 loc) 695 B
/* ************************************************************************ qooxdoo - the new era of web development http://qooxdoo.org Copyright: 2008 Derrell Lipman License: MIT: https://opensource.org/licenses/MIT See the LICENSE file in the project's top-level directory for details. Authors: * Derrell Lipman (derrell) ************************************************************************ */ /** * A null header/footer. This is not displayed. */ qx.Class.define("qx.ui.progressive.headfoot.Null", { extend: qx.ui.progressive.headfoot.Abstract, construct() { super(); // We're null, so don't display. this.exclude(); } });