Remove '/public' prefix from asset paths for consistency across views
All checks were successful
Deploy Production (crewsportswear.com) / deploy (push) Successful in 2m4s
All checks were successful
Deploy Production (crewsportswear.com) / deploy (push) Successful in 2m4s
This commit is contained in:
@@ -546,7 +546,7 @@
|
||||
contentType: false,
|
||||
beforeSend: function(xhr){
|
||||
$("#saveSportsBtn").attr('disabled', true);
|
||||
$("#saveSportsBtn").html('Saving <img src="{{url('public/images/ajax-loader.gif')}}">');
|
||||
$("#saveSportsBtn").html('Saving <img src="{{url('/images/ajax-loader.gif')}}">');
|
||||
|
||||
var token = $('meta[name="csrf_token"]').attr('content');
|
||||
if (token) {
|
||||
@@ -598,7 +598,7 @@
|
||||
contentType: false,
|
||||
beforeSend: function(xhr){
|
||||
$("#updateSportsBtn").attr('disabled', true);
|
||||
$("#updateSportsBtn").html('Updating <img src="{{url('public/images/ajax-loader.gif')}}">');
|
||||
$("#updateSportsBtn").html('Updating <img src="{{url('/images/ajax-loader.gif')}}">');
|
||||
|
||||
var token = $('meta[name="csrf_token"]').attr('content');
|
||||
if (token) {
|
||||
|
||||
Reference in New Issue
Block a user