//copy spinner from flat theme
(function() {
var $, FlatMessage, spinner_template,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
$ = jQuery;
spinner_template = '
\n \n \n \n \n \n \n
';
FlatMessage = (function(_super) {
__extends(FlatMessage, _super);
function FlatMessage() {
return FlatMessage.__super__.constructor.apply(this, arguments);
}
FlatMessage.prototype.template = function(opts) {
var $message;
$message = FlatMessage.__super__.template.apply(this, arguments);
$message.append($(spinner_template));
return $message;
};
return FlatMessage;
})(window.Messenger.Message);
window.Messenger.themes.air = {
Message: FlatMessage
};
}).call(this);
$(function(){
function pageLoad(){
$('.widget').widgster();
var theme = 'air';
$.globalMessenger({ theme: theme });
Messenger.options = { theme: theme };
//Messenger().post("Thanks for checking out Messenger!");
var loc = ['bottom', 'right'];
var $lsel = $('.location-selector');
var update = function(){
var classes = 'messenger-fixed';
for (var i=0; i < loc.length; i++)
classes += ' messenger-on-' + loc[i];
$.globalMessenger({ extraClasses: classes, theme: theme });
Messenger.options = { extraClasses: classes, theme: theme };
};
update();
// $lsel.locationSelector()
// .on('update', function(pos){
// loc = pos;
//
// update();
// });
$('#show-error-message').on('click', function(){
var i;
i = 0;
Messenger().run({
errorMessage: 'Error destroying alien planet',
successMessage: 'Alien planet destroyed!',
action: function(opts) {
if (++i < 3) {
return opts.error({
status: 500,
readyState: 0,
responseText: 0
});
} else {
return opts.success();
}
}
});
return false;
});
$('#show-info-message').on('click', function(){
var msg = Messenger().post({
message: 'Launching thermonuclear war...',
actions: {
cancel: {
label: 'cancel launch',
action: function() {
return msg.update({
message: 'Thermonuclear war averted',
type: 'success',
actions: false
});
}
}
}
});
return false;
});
$('#show-success-message').on('click', function(){
Messenger().post({
message: 'Showing success message was successful!',
type: 'success',
showCloseButton: true
});
return false;
});
}
pageLoad();
PjaxApp.onPageLoad(pageLoad);
});