_chekArguments: function()

in app/scripts/views/mainPage/view3d.js [82:92]


    _chekArguments: function (arrayOfUrl, callback, context) {
        if (!Ember.isArray(arrayOfUrl)) {
            throw '@arrayOfUrl should be an array';
        }
        if (typeof callback !== 'function') {
            throw '@callback should be a function';
        }
        if (Ember.isNone(context)) {
            throw '@context can\'t be empty';
        }
    },