Source: events/unlockedevent.js

define('application/events/unlockedevent', [
    'antie/events/event'
], function (
    Event
) {
    'use strict';

    var TYPE = 'unlocked';

    return Event.extend({

        /**
         * Initialises the event.
         *
         * @param {Object} target - The target of the event.
         */
        init: function init (target) {
            init.base.call(this, TYPE);

            this.target = target;
        }
    });

});