diff options
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/libtoaster.js | 5 | ||||
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/table.js | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js index c3798336f2..667aca20ff 100644 --- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js +++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js | |||
| @@ -503,6 +503,11 @@ $(document).ready(function() { | |||
| 503 | $("#loading-notification").fadeOut(); | 503 | $("#loading-notification").fadeOut(); |
| 504 | }); | 504 | }); |
| 505 | 505 | ||
| 506 | $(document).ajaxError(function(event, jqxhr, settings, errMsg){ | ||
| 507 | console.warn("Problem with xhr call"); | ||
| 508 | console.warn(errMsg); | ||
| 509 | console.warn(jqxhr.responseText); | ||
| 510 | }); | ||
| 506 | 511 | ||
| 507 | function check_for_duplicate_ids () { | 512 | function check_for_duplicate_ids () { |
| 508 | /* warn about duplicate element ids */ | 513 | /* warn about duplicate element ids */ |
diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js index 45c61848da..1072c7588d 100644 --- a/bitbake/lib/toaster/toastergui/static/js/table.js +++ b/bitbake/lib/toaster/toastergui/static/js/table.js | |||
| @@ -53,11 +53,6 @@ function tableInit(ctx){ | |||
| 53 | tableData: tableData, | 53 | tableData: tableData, |
| 54 | tableParams: tableParams | 54 | tableParams: tableParams |
| 55 | }, null, libtoaster.dumpsUrlParams(tableParams)); | 55 | }, null, libtoaster.dumpsUrlParams(tableParams)); |
| 56 | }, | ||
| 57 | |||
| 58 | error: function (_data) { | ||
| 59 | console.warn("Call failed"); | ||
| 60 | console.warn(_data); | ||
| 61 | } | 56 | } |
| 62 | }); | 57 | }); |
| 63 | } | 58 | } |
