Skip to content

Commit c1632a6

Browse files
Merge pull request #121 from bigopon/pal
add PLATFORM.moduleName()
2 parents f9187d5 + ae7e6e1 commit c1632a6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/aurelia-ui-virtualization.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
import {PLATFORM} from 'aurelia-pal'
12
import {VirtualRepeat} from './virtual-repeat';
23
import {InfiniteScrollNext} from './infinite-scroll-next';
34

45
export function configure(config) {
56
config.globalResources(
6-
'./virtual-repeat',
7-
'./infinite-scroll-next'
7+
PLATFORM.moduleName('./virtual-repeat'),
8+
PLATFORM.moduleName('./infinite-scroll-next')
89
);
910
}
1011

0 commit comments

Comments
 (0)