Diaspora.widgets.add("alert", function() { this.start = function() { $(document).bind("close.facebox", function() { if ($("#diaspora_alert").length) { $("#diaspora_alert").detach(); } }); }; this.faceboxTemplate = '
' + '
' + '
' + '

' + '{{title}}' + '

' + '
' + '{{content}}' + '
' + '
'; this.alert = function(title, content) { var template = $.mustache(this.faceboxTemplate, { title: title, content: content }); $(template).appendTo(document.body); $.facebox({ div: "#diaspora_alert" }); } });