17 lines
507 B
HTML
17 lines
507 B
HTML
<div id="{{__SELF__}}" class="{{__SELF__.property('css_class')}}">
|
|
{% if __SELF__.property('random') %}
|
|
{% put scripts %}
|
|
<script>
|
|
$.request('{{__SELF__}}::onShow',{
|
|
data:{random:{{__SELF__.property('random')}}
|
|
{% if __SELF__.property('css_class') %},css_class:'{{__SELF__.property('css_class')}}' {% endif %}
|
|
}
|
|
});
|
|
</script>
|
|
{% endput %}
|
|
{% else %}
|
|
{% partial __SELF__ ~ "::"~ __SELF__.property('type') %}
|
|
{% endif %}
|
|
</div>
|
|
|