Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
11 lines
250 B
CoffeeScript
11 lines
250 B
CoffeeScript
"use strict"
|
|
|
|
App.Followable =
|
|
|
|
update: (followable_id, button, notice) ->
|
|
$("##{followable_id} .js-follow").html(button)
|
|
if ($("[data-alert]").length > 0)
|
|
$("[data-alert]").replaceWith(notice)
|
|
else
|
|
$("body").append(notice)
|