more urls with double slashes

This commit is contained in:
Kode 2022-03-11 19:06:29 +00:00
parent 987a9c03b0
commit d961aeb19b
3 changed files with 5 additions and 5 deletions

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
{
"/css/app.css": "/css/app.css?id=62b46d36567ec0e3418f",
"/js/app.js": "/js/app.js?id=0edb6841a22c324225f3"
"/js/app.js": "/js/app.js?id=fd29fe4c923023023da6"
}

View file

@ -120,7 +120,7 @@ $.when( $.ready ).then(function() {
attribute: 'data-id'
});
$.post(
base+'/order',
base+'order',
{ order:idsInOrder }
);
}
@ -175,7 +175,7 @@ $.when( $.ready ).then(function() {
data[config] = $(this).val();
});
$.post(base+'/test_config', { data: data }, function(data) {
$.post(base+'test_config', { data: data }, function(data) {
alert(data);
});
@ -185,7 +185,7 @@ $.when( $.ready ).then(function() {
var current = $(this);
var id = current.data('id');
var tag = current.data('tag');
$.get(base+'/items/pintoggle/'+id+'/true/'+tag, function(data) {
$.get(base+'items/pintoggle/'+id+'/true/'+tag, function(data) {
var inner = $(data).filter('#sortable').html();
$('#sortable').html(inner);
current.toggleClass('active');