client/js/require-utils.js
author rougeronj
Thu, 18 Jun 2015 16:25:21 +0200
changeset 486 f1ff0529ba41
parent 293 fba23fde14ba
permissions -rw-r--r--
fix bug in which hiddenNodes was reference on gview.get('hidden_node'). So any changes on hiddenNodes was modifying the original array too, preventing us to come back to the original state of the view.

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

});