Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
8 lines
144 B
CoffeeScript
8 lines
144 B
CoffeeScript
"use strict"
|
|
|
|
App.LocationChanger =
|
|
|
|
initialize: ->
|
|
$(".js-location-changer").on "change", ->
|
|
window.location.assign($(this).val())
|