mibew/src/mibew/js/source/chat/models/controls/send_mail.js
2014-08-08 12:34:04 +00:00

51 lines
1.4 KiB
JavaScript

/*!
* Copyright 2005-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*/
(function(Mibew, _){
/**
* @class Represent Send mail control model
*/
Mibew.Models.SendMailControl = Mibew.Models.Control.extend(
/** @lends Mibew.Models.SendMailControl.prototype */
{
/**
* A list of default model values.
*
* The model inherits defaults from
* {@link Mibew.Models.Control.prototype.defaults}.
* @type Object
*/
defaults: _.extend(
{},
Mibew.Models.Control.prototype.defaults,
{
/**
* An URL of the Mail page or false by default.
* @type String|Boolean
*/
link: false,
/**
* Params string for send mail popup window
* @type String
*/
windowParams: ''
}
),
/**
* Returns model type
* @returns {String} Model type
*/
getModelType: function() {
return 'SendMailControl';
}
}
);
})(Mibew, _);