Skip to content

Commit 1f84077

Browse files
committed
Merge pull request #179 from rpkilby/fix-pipeline-exports
Remove cjs style exports from pipeline
2 parents e4b2235 + 4f17b96 commit 1f84077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pipeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export function activate (view, transition, depth, cb) {
162162
view.activated = true
163163
// activate the child view
164164
if (view.childView) {
165-
exports.activate(view.childView, transition, depth + 1)
165+
activate(view.childView, transition, depth + 1)
166166
}
167167
if (dataHook && waitForData) {
168168
// wait until data loaded to insert

0 commit comments

Comments
 (0)