Files
RRBEC/gestaoRaul/templates/static/comandas/js/comandas.js
2025-03-06 11:00:28 -03:00

49 lines
1.4 KiB
JavaScript

function openModal() {
document.getElementById('Modal-create-comanda').style.display = 'block';
textField = document.getElementById('name-comanda')
textField.focus()
}
function closeModal() {
document.getElementById('Modal-create-comanda').style.display = 'none';
}
document.getElementById('openModal').addEventListener('click', openModal);
// document.getElementById('form-comanda').addEventListener('submit', function(event) {
// event.preventDefault();
// const productName = document.getElementById('productName').value;
// const productPrice = document.getElementById('productPrice').value;
// const productDescription = document.getElementById('productDescription').value;
// closeModal();
// }
// );
function mostrarNotificacao(titulo,corpo,grupo) {
if (Notification.permission != 'granted') {
Notification.requestPermission().then(function(permission) {
if (permission == 'granted') {
var notification = new Notification(titulo, {
body: corpo,
icon: 'https://example.com/icon.png'
});
}
});
} else {
var notification = new Notification(titulo, {
body: corpo,
icon: 'https://imagecolorpicker.com/imagecolorpicker-preview_b.avif',
image: 'https://imagecolorpicker.com/imagecolorpicker-preview_b.avif',
});
}
}