client/js/router.js
author rougeronj
Wed, 10 Jun 2015 15:58:42 +0200
changeset 473 6649d2d75a87
parent 471 e0c7be5dc02c
child 510 a8f02d66bf02
permissions -rw-r--r--
update router add function "parameters" to scene to apply the correct changes depending on the parameters sent by the router

(function(root) {
    "use strict";
    
    var Backbone = root.Backbone;
    
    var Router = root.Rkns.Router = Backbone.Router.extend({
        routes: {
            '': 'index'
        },
        
        index: function (parameters) {
            
            var result = {};
            if (parameters === null){
                return;
            }
            parameters.split("&").forEach(function(part) {
              var item = part.split("=");
              result[item[0]] = decodeURIComponent(item[1]);
            });
            this.trigger('router', result);            
        }  
    });

})(window);