1
0
Fork 0

boom: Removed next() call from macro methods

This commit is contained in:
Joost De Cock 2018-08-05 13:09:09 +02:00
parent 7190c3a73d
commit c2d0063917
3 changed files with 14 additions and 11 deletions

View file

@ -10,7 +10,7 @@ export default {
}
},
macros: {
title: function(next, so) {
title: function(so) {
so.at.attr("data-text", so.nr).attr("data-text-class", "title-nr note");
this.points.titleName = so.at
.shift(-90, 13)
@ -23,7 +23,6 @@ export default {
this.context.config.name + " v" + this.context.config.version
)
.attr("data-text-class", "title-pattern fill-note");
next();
}
}
};