Resolves #147 Flip trees upside down with flip

This commit is contained in:
Peter Cottle 2014-01-03 10:26:39 -08:00
parent 108937aad5
commit 937977f232
12 changed files with 61 additions and 35 deletions

View file

@ -4,6 +4,7 @@ var Backbone = require('backbone');
var constants = require('../util/constants');
var util = require('../util');
var intl = require('../intl');
var GlobalState = require('../util/globalState');
/**
* Globals
@ -195,7 +196,7 @@ var initDemo = function(sandbox) {
}
if (params.locale !== undefined && params.locale.length) {
constants.GLOBAL.locale = params.locale;
GlobalState.locale = params.locale;
events.trigger('localeChanged');
}