We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d2d370 commit d4db76dCopy full SHA for d4db76d
examples/index.jade
@@ -38,8 +38,10 @@ block mainContent
38
- var iExample = 0;
39
while iExample < examples.length
40
.row
41
- - for (var i = 0 ; i < 3; i += 1)
42
- if iExample < examples.length
+ - var i = 0
+ while i < 3 && iExample < examples.length
43
+ if !examples[iExample].disabled
44
+ - i += 1
45
+thumbnail(examples[iExample])
- - iExample += 1
46
+ - iExample += 1
47
examples/widgets/example.json
@@ -5,5 +5,6 @@
5
"exampleJs": ["main.js", "chart.js"],
6
"about": {
7
"text": "This example shows how the widgets API can be used to place elements on top of the map."
8
- }
+ },
9
+ "disabled": true
10
}
0 commit comments