Skip to content

Commit

Permalink
.gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasJanda committed Apr 26, 2020
1 parent e797ea3 commit 5c1f313
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*_RSOPTIMIZED.css
*_RSOPTIMIZED.js
5 changes: 2 additions & 3 deletions out/src/js/js.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

$( document ).ready(function() {
$('#rs_cookie_manager_accept_all').click(function() {
$('#rs_cookie_manager_popup input[type="checkbox"]').each(function() {
Expand All @@ -20,20 +22,17 @@ $( document ).ready(function() {
});
function rs_cookie_manager_popup_open()
{
"use strict";
$('#rs_cookie_manager_popup').modal('show');
return false;
}
function rs_cookie_manager_popup_close()
{
"use strict";
window.setTimeout(function() {
$('#rs_cookie_manager_popup').modal('hide');
}, 500);
}
function rs_cookie_manager_accept()
{
"use strict";
$('#rs_cookie_manager_popup_form').trigger('submit');
/* sync ajax request */
/*
Expand Down

0 comments on commit 5c1f313

Please sign in to comment.