# HG changeset patch # User Tomas Zeman # Date 1514471354 -3600 # Node ID 28fe22d4f2f564ec6f5ab6449cd787433e0f3dcb # Parent d2a0dfbb7dae4a58e610e13fa6ec2c513c052a0b twbsTags: Tabset.apply(xs) should apply xs after tabs diff -r d2a0dfbb7dae -r 28fe22d4f2f5 shared/src/main/scala/net/tz/ngtags/twbsTags.scala --- a/shared/src/main/scala/net/tz/ngtags/twbsTags.scala Tue Dec 12 16:02:42 2017 +0100 +++ b/shared/src/main/scala/net/tz/ngtags/twbsTags.scala Thu Dec 28 15:29:14 2017 +0100 @@ -58,10 +58,10 @@ def apply(xs: Modifier*): TypedTag[String] = tag("uib-tabset")(attr("active"):=activeE, - _justified.map(attr("justified"):=_), xs, + _justified.map(attr("justified"):=_), _tabs.map { t => tag("uib-tab")(tag("uib-tab-heading")(t.heading), t.content) - }) + }, xs) } def tabset(activeExpr: String) = Tabset(activeExpr)