You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
<?php
|
|
|
|
/**
|
|
*
|
|
* @package templates/default
|
|
*/
|
|
|
|
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
|
|
?>
|
|
<script>
|
|
DUPX.topMessages = {
|
|
wrapper: null,
|
|
empty: function () {
|
|
this.wrapper.empty();
|
|
},
|
|
add: function (html) {
|
|
this.wrapper.html(html);
|
|
}
|
|
};
|
|
|
|
$(document).ready(function () {
|
|
DUPX.topMessages.wrapper = $('#page-top-messages');
|
|
});
|
|
</script>
|