define('application/events/parentalcontrol', [
'antie/events/event'
], function (
Event
) {
'use strict';
var TYPE = 'parentalcontrol';
return Event.extend({
/**
* Initialises the event.
*
* @param {boolean} status - True if parental control is on, false if not.
*/
init: function init (status) {
init.base.call(this, TYPE);
this.status = status;
}
});
});