Initial commit - Typo3 11.5.41
This commit is contained in:
328
fileadmin/templates/ext/cookie_control/res/css/black.css
Normal file
328
fileadmin/templates/ext/cookie_control/res/css/black.css
Normal file
File diff suppressed because one or more lines are too long
329
fileadmin/templates/ext/cookie_control/res/css/blue.css
Normal file
329
fileadmin/templates/ext/cookie_control/res/css/blue.css
Normal file
File diff suppressed because one or more lines are too long
328
fileadmin/templates/ext/cookie_control/res/css/default.css
Normal file
328
fileadmin/templates/ext/cookie_control/res/css/default.css
Normal file
File diff suppressed because one or more lines are too long
329
fileadmin/templates/ext/cookie_control/res/css/grey.css
Normal file
329
fileadmin/templates/ext/cookie_control/res/css/grey.css
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
fileadmin/templates/ext/cookie_control/res/images/toggle.png
Normal file
BIN
fileadmin/templates/ext/cookie_control/res/images/toggle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
523
fileadmin/templates/ext/cookie_control/res/js/cookieControl-5.0.min.js
vendored
Normal file
523
fileadmin/templates/ext/cookie_control/res/js/cookieControl-5.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,47 @@
|
||||
jQuery(document).ready(function(){
|
||||
jQuery('#cctoggle').live('click',function(){
|
||||
if(document.getElementById('cchide-popup').checked){
|
||||
CookieControl.setCookie('civicShowCookieIcon', 'no');$('#ccc-icon').hide()
|
||||
}
|
||||
if(jQuery(this).attr('class') == 'cctoggle-on'){
|
||||
jQuery.ajax({
|
||||
url: 'index.php',
|
||||
data: {
|
||||
eID: 'cookieDelete',
|
||||
tx_cookie_control_pi1: ({
|
||||
'in':2
|
||||
})
|
||||
},
|
||||
success: function(data) {
|
||||
CookieControl.reset();
|
||||
setTimeout(function(){window.location.reload()}, 500);
|
||||
}
|
||||
});
|
||||
|
||||
}else{
|
||||
jQuery.ajax({
|
||||
url: 'index.php',
|
||||
data: {
|
||||
eID: 'cookieDelete',
|
||||
tx_cookie_control_pi1: ({
|
||||
'in': 1
|
||||
})
|
||||
},
|
||||
success: function(data) {
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
return false;
|
||||
});
|
||||
jQuery('#cookie_enable').bind('click',function(){
|
||||
CookieControl.setCookie('civicShowCookieIcon', 'yes');
|
||||
$('#cccwr').show();
|
||||
$('#ccc-icon').show();
|
||||
});
|
||||
|
||||
setTimeout(function(){
|
||||
$('#cccwr').hide()
|
||||
$('#ccc-icon').hide()
|
||||
},300000) ;
|
||||
});
|
||||
3
fileadmin/templates/ext/cookie_control/res/template.html
Normal file
3
fileadmin/templates/ext/cookie_control/res/template.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!-- ###COOKIE### -->
|
||||
|
||||
<!-- ###COOKIE### -->
|
||||
Reference in New Issue
Block a user