2012-02-18 20:26:52 +00:00
|
|
|
{if isset($errors)}
|
|
|
|
<div class="ui-bar ui-bar-e errors">
|
|
|
|
<h3>{'Error'|@translate}</h3>
|
|
|
|
<div><a href="#" data-role="button" data-icon="delete" data-iconpos="notext" class="close-button">Button</a></div>
|
|
|
|
<p>{'<br>'|@implode:$errors}</p>
|
2012-02-16 11:51:34 +00:00
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{if not empty($infos)}
|
2012-02-18 20:26:52 +00:00
|
|
|
<div class="ui-bar ui-bar-b infos">
|
|
|
|
<h3>{'Info'|@translate}</h3>
|
|
|
|
<div><a href="#" data-role="button" data-icon="delete" data-iconpos="notext" class="close-button">Button</a></div>
|
|
|
|
<p>{'<br>'|@implode:$infos}</p>
|
2012-02-16 11:51:34 +00:00
|
|
|
</div>
|
2012-02-18 20:26:52 +00:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
{footer_script}{literal}
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('.close-button').click(function() {
|
|
|
|
$(this).parents('.ui-bar').remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
{/literal}{/footer_script}
|