(function() {
var Alert = function() {
var self = this;
this.faceboxTemplate = '
' +
'
' +
'' +
'{{content}}' +
'
' +
'
';
this.subscribe("widget/ready", function() {
$(document).bind("close.facebox", function() {
$("#facebox, #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);
})();