We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb0a58 commit 0b6296cCopy full SHA for 0b6296c
test/scaffolding.js
@@ -11,7 +11,7 @@ function createHtml(settings) {
11
var extra = settings.extra || '';
12
return '<div ui-scroll-viewport' + viewportStyle + '>' +
13
(settings.wrapper ? settings.wrapper.start : '') +
14
- '<div ui-scroll="item in ' + settings.datasource + '"' +
+ '<div class="item" ui-scroll="item in ' + settings.datasource + '"' +
15
adapter +
16
itemStyle + bufferSize + padding + isLoading + topVisible + disabled + extra + '>' +
17
template +
test/test.css
@@ -2,4 +2,5 @@
2
.col0 { width: 40px; }
3
.col1 { width: 80px; }
4
.col2 { width: 40px; }
5
-.col3 { width: 50px; }
+.col3 { width: 50px; }
6
+.item:nth-child(odd) { background-color: #e6e6e6; }
0 commit comments