При переходе на страницу employees, пока только в Chrome ( в Opera не встретил пока что)
периодически выбивает такое окно:
c таким сопровождением:
роуты:
Route::any('employees/sort', 'EmployeesController@sort')->middleware('auth');
Auth::routes();
Route::get('logout', '\App\Http\Controllers\Auth\LoginController@logout');
Route::group(['middleware' => 'auth'], function() {
Route::resource('employees','EmployeesController');
});
При переходе на страницу employees,
ajax подгружает контент.
function ajaxLoad(filename, content) {
content = typeof content !== 'undefined' ? content : 'content';
$('.loading').show();
$.ajax({
type: "GET",
url: filename,
contentType: false,
success:function(data){
console.log(data);
$('#'+ content).html($(data));
$('.loading').hide();
},
error: function (xhr, status, error) {
alert(xhr.responseText);
}
});
}
$(document).ready(function () {
ajaxLoad('employees/sort');
});
Но такое выдаёт периодически, при повторении тех же действий может и не быть такого, а потом снова появляется .
В чём может быть дело?