Added javascript code to add a result in the background without refreshing the page
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
$ ->
|
||||
console.log('ready.')
|
||||
|
||||
$('#result-form').on('submit', addResult)
|
||||
|
||||
$('#report-benchmarks').on('change', ->
|
||||
url = '/api/benchmark/' + $('#report-benchmarks').val() + '/tests'
|
||||
$.get(url, (data) ->
|
||||
@ -17,3 +19,18 @@ addOption = (test) ->
|
||||
.attr('value', test.id)
|
||||
.text(test.title)
|
||||
)
|
||||
|
||||
addResult = (e) ->
|
||||
e.preventDefault() # prevent browser from traveling to another page
|
||||
|
||||
$.post('/result/add', {
|
||||
redirect: false
|
||||
result_test: $('#result_test').val()
|
||||
result_component: $('#result_component').val()
|
||||
result_benchmark: $('#result_benchmark').val()
|
||||
result_avg: $('#result_avg').val()
|
||||
result_min: $('#result_min').val()
|
||||
result_max: $('#result_max').val()
|
||||
}, (data) ->
|
||||
console.log(data)
|
||||
)
|
||||
|
Reference in New Issue
Block a user