Create vehicles.js.coffee

This commit is contained in:
2016-08-03 21:26:21 -04:00
committed by GitHub
parent d38e3e1702
commit 0d87e5fb21

View File

@@ -0,0 +1,16 @@
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://coffeescript.org/
$ ->
$(document).on 'change', '#vehicles_select', (evt) ->
$.ajax 'update_vehicles',
type: 'GET'
dataType: 'script'
data: {
vehicle_id: $("#vehicles_select option:selected").val()
}
error: (jqXHR, textStatus, errorThrown) ->
console.log("AJAX Error: #{textStatus}")
success: (data, textStatus, jqXHR) ->
console.log("Dynamic vehicle select OK!")