Sequenzia/app/views/layouts/_notice.php
2013-10-26 18:06:58 -05:00

18 lines
468 B
PHP
Executable File

<div class="overlay-notice-container" id="notice-container" style="display: none;">
<table cellspacing="0" cellpadding="0"> <tbody>
<tr> <td>
<div id="notice">
</div>
</td> </tr>
</tbody> </table>
</div>
<?php $this->contentFor('post_cookie_javascripts', function(){ ?>
<script type="text/javascript">
var text = Cookie.get("notice");
if (text) {
notice(text, true);
Cookie.remove("notice");
}
</script>
<?php }) ?>