Skip to content

Instantly share code, notes, and snippets.

@kakubei
kakubei / alert substitute
Created February 6, 2014 14:16
Substitute regular javascript alert with JQuery one using Coffeescript
window.alert = (message) ->
$(document.createElement("div")).attr(
title: "Alert"
class: "alert"
).html(message).dialog
buttons:
OK: ->
$(this).dialog "close"
return