summaryrefslogtreecommitdiff
path: root/public/js/menu.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/menu.js')
-rw-r--r--public/js/menu.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/public/js/menu.js b/public/js/menu.js
index a864597..ac6d35e 100644
--- a/public/js/menu.js
+++ b/public/js/menu.js
@@ -237,4 +237,15 @@ function checkMenuEntry(page_id){
237 .catch(error => { 237 .catch(error => {
238 console.error('Erreur:', error); 238 console.error('Erreur:', error);
239 }); 239 });
240}
241
242
243function editUrlEntry(page_id){
244 const selected_div = document.getElementById(page_id);
245 console.log(selected_div.id);
246}
247
248function deleteUrlEntry(page_id){
249 const selected_div = document.getElementById(page_id);
250 console.log(selected_div.id);
240} \ No newline at end of file 251} \ No newline at end of file