mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Template/Endpoints (Base)
* redo page render following the logic of:
Response ─┬─> TextResponse ─> TextResponseImpl
└─> TemplateResponse ─> TemplateResponseImpl
* split up giant files, one per response path
* caching becomes a trait, implemented where necessary
* TextResponses (Ajax) can now be cached
* make use of previously defined php classes for js objects
* Tabs, Listview, Tooltip, Announcement, Markup, Book, ...
* \Aowow\Template\PageTemplate is the new class to be cached
* do not discard error messages generated after vars have been sent to template
and store in session for display at a later time
* implement tracking consent management
* move logic out of template into their respective endpoints
This commit is contained in:
10
static/js/consent.js
Normal file
10
static/js/consent.js
Normal file
@@ -0,0 +1,10 @@
|
||||
$(document).ready(function() {
|
||||
$WH.qs('#consent-overlay #accept-btn').onclick = function () {
|
||||
$WH.sc('consent', 1000, 1);
|
||||
$WH.ge('consent-overlay').style.display = 'none';
|
||||
};
|
||||
$WH.qs('#consent-overlay #reject-all').onclick = function () {
|
||||
$WH.sc('consent', 1000, 0);
|
||||
$WH.ge('consent-overlay').style.display = 'none';
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user