summaryrefslogtreecommitdiffstats
path: root/web/layout/stacked.js
blob: acff8a6d19642db97d2d72d05c15fbb583f5a6d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2012-2014 Kaarle Ritvanen
 * See LICENSE file for license details
 */

define(["aconf/type", "aconf/widget/inline"], function(type, Base) {
    return Base.extend({
	widget: function(meta) {
	    return type.isTreeNode(meta) ? Base : Base.widget.call(this, meta);
	}
    });
});