mirror of
https://github.com/konvajs/konva.git
synced 2026-03-03 16:58:33 +08:00
11 lines
257 B
Cheetah
11 lines
257 B
Cheetah
<?js
|
|
var data = obj;
|
|
data.forEach(function(example) {
|
|
if (example.caption) {
|
|
?>
|
|
<p class="code-caption"><?js= example.caption ?></p>
|
|
<?js } ?>
|
|
<pre class="prettyprint"><code><?js= example.code ?></code></pre>
|
|
<?js
|
|
});
|
|
?> |