Difference between revisions of "MediaWiki:Common.js"

Jump to: navigation, search

Difference between revisions of "MediaWiki:Common.js"

Line 1: Line 1:
 
// Terns Modal
 
// Terns Modal
 +
 +
$(document).ready(function() {
 
const termsModal = $('#termsModal')
 
const termsModal = $('#termsModal')
  
Line 14: Line 16:
 
   document.cookie = "rpm=true; path=/";
 
   document.cookie = "rpm=true; path=/";
 
});
 
});
 +
})

Revision as of 17:06, 9 June 2023

// Terns Modal

$(document).ready(function() {
const termsModal = $('#termsModal')

// Check if the "rpm" cookie is present
if (!document.cookie.includes('rpm')) {
  // Show the Bootstrap modal
  termsModal.modal('show');
}

// Example close button click event to set the "rpm" cookie
$('#agreeTermsButton').click(function() {
  termsModal.modal('hide');
  // Set the "rpm" cookie with no expiration date
  document.cookie = "rpm=true; path=/";
});
})