client/js/require-utils.js
author durandn
Mon, 11 Apr 2016 16:28:05 +0200
changeset 608 8fd40139827c
parent 293 fba23fde14ba
permissions -rw-r--r--
permission implementation has to be client-side and not in the generic api package + deleted duplicate migration

define([], function ($, _) {
    'use strict';
    return {
        getUtils: function(){
            return window.Rkns.Utils;
        },
        getRenderer: function(){
            return window.Rkns.Renderer;
        }
    };

});