Compiled new source for fix

This commit is contained in:
Birger J. Nordølum
2018-06-17 23:19:45 +02:00
parent 7142f755f5
commit c239c0ea5a
3 changed files with 6023 additions and 7 deletions

4
public/js/app.js vendored
View File

@@ -128,7 +128,7 @@ $.when( $.ready ).then(function() {
e.preventDefault();
var apiurl = $('#create input[name=url]').val();
var override_url = $('#create input[name="config[override_url]"').val();
var override_url = $('#create input[name="config[override_url]"]').val();
if(override_url.length && override_url != '') {
apiurl = override_url;
}
@@ -140,7 +140,7 @@ $.when( $.ready ).then(function() {
data[config] = $(this).val();
});
$.post('/test_config', { data }, function(data) {
$.post('/test_config', { data: data }, function(data) {
alert(data);
});