(function() { var Alert = function() { var self = this; this.faceboxTemplate = '
' + '
' + '
' + '

' + '{{title}}' + '

' + '
' + '{{content}}' + '
' + '
'; this.subscribe("widget/ready", function() { $(document).bind("close.facebox", function() { $("#diaspora_alert").remove(); }); }); this.alert = function(title, content) { $($.mustache(self.faceboxTemplate, { title: title, content: content })).appendTo(document.body); $.facebox({ div: "#diaspora_alert" }, "diaspora_alert"); } }; Diaspora.widgets.add("alert", Alert); })();