mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Formatting
This commit is contained in:
parent
406c8a6d1e
commit
214ef3dd0b
2 changed files with 3 additions and 3 deletions
|
@ -700,7 +700,7 @@ static void print_profile(const std::vector<profile_item_t*> &items,
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
delete me;
|
delete me;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -404,7 +404,7 @@ function run_get_request_with_bulk_handler(url, handler) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "GET",
|
type: "GET",
|
||||||
url: url,
|
url: url,
|
||||||
dataType: "text",
|
dataType: "text",
|
||||||
success: function(data){
|
success: function(data){
|
||||||
$('#global_error').text('')
|
$('#global_error').text('')
|
||||||
handler($.parseJSON(data))
|
handler($.parseJSON(data))
|
||||||
|
@ -427,7 +427,7 @@ function run_post_request(url, data_map, handler) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: url,
|
url: url,
|
||||||
dataType: "text",
|
dataType: "text",
|
||||||
data: data_map,
|
data: data_map,
|
||||||
success: function(data){
|
success: function(data){
|
||||||
$('#global_error').text('')
|
$('#global_error').text('')
|
||||||
|
|
Loading…
Reference in a new issue