diff --git a/js/gamutable.es6.js b/js/gamutable.es6.js index 457df99..9a70f8c 100644 --- a/js/gamutable.es6.js +++ b/js/gamutable.es6.js @@ -12,6 +12,8 @@ jQuery(function () { } let url = $(this).attr('href'); let id = $(this).data('id'); + let nomBlocAjaxReload = $(this).data('ajaxreload'); + console.log('nom ', nomBlocAjaxReload); console.time('Chargement de VueJs APRES Ajax'); $.ajax({ url: url, diff --git a/js/gamutable.js b/js/gamutable.js index f9951dc..28ec415 100644 --- a/js/gamutable.js +++ b/js/gamutable.js @@ -36,6 +36,8 @@ jQuery(function () { var url = $(this).attr('href'); var id = $(this).data('id'); + var nomBlocAjaxReload = $(this).data('ajaxreload'); + console.log('nom ', nomBlocAjaxReload); console.time('Chargement de VueJs APRES Ajax'); $.ajax({ url: url, @@ -266,7 +268,6 @@ var monTableau = { fetch(this.urlvuebloc).then(function (response) { return response.text(); }).then(function (data) { - console.log(data); _this.vuebloc = data; }); }