diff options
Diffstat (limited to 'public/js/menu.js')
-rw-r--r-- | public/js/menu.js | 11 |
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 | |||
243 | function editUrlEntry(page_id){ | ||
244 | const selected_div = document.getElementById(page_id); | ||
245 | console.log(selected_div.id); | ||
246 | } | ||
247 | |||
248 | function 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 |