summaryrefslogtreecommitdiffstats
path: root/web/layout
diff options
context:
space:
mode:
Diffstat (limited to 'web/layout')
-rw-r--r--web/layout/stacked.js2
-rw-r--r--web/layout/tabular.js8
2 files changed, 5 insertions, 5 deletions
diff --git a/web/layout/stacked.js b/web/layout/stacked.js
index ecebbd8..acff8a6 100644
--- a/web/layout/stacked.js
+++ b/web/layout/stacked.js
@@ -3,7 +3,7 @@
* See LICENSE file for license details
*/
-define(["acf2/type", "acf2/widget/inline"], function(type, Base) {
+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);
diff --git a/web/layout/tabular.js b/web/layout/tabular.js
index 084d85c..db849e8 100644
--- a/web/layout/tabular.js
+++ b/web/layout/tabular.js
@@ -5,10 +5,10 @@
define(
[
- "acf2/type",
- "acf2/widget/inline",
- "acf2/widget/table/header",
- "acf2/widget/table/row"
+ "aconf/type",
+ "aconf/widget/inline",
+ "aconf/widget/table/header",
+ "aconf/widget/table/row"
],
function(type, Base, TableHeader, TableRow) {
return Base.extend({