Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / javascripts / app.js @ 47eca5c5

History | View | Annotate | Download (408 Bytes)

1
window.App = Ember.Application.create({
2
        LOG_ACTIVE_GENERATION: true,
3
        LOG_MODULE_RESOLVER: true,
4
        LOG_TRANSITIONS: true,
5
        LOG_TRANSITIONS_INTERNAL: true,
6
        LOG_VIEW_LOOKUPS: true,
7
});
8

    
9
App.ApplicationAdapter = DS.FixtureAdapter;
10

    
11
App.RawTransform = DS.Transform.extend({
12
  deserialize: function(serialized) {
13
    return serialized;
14
  },
15
  serialize: function(deserialized) {
16
    return deserialized;
17
  }
18
});