// Generated by CoffeeScript 1.10.0 (function() { var AppView, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; window.AppView = AppView = (function(superClass) { extend(AppView, superClass); function AppView(conf) { var q1, q2; AppView.__super__.constructor.call(this, conf); q1 = new Query({ airports_db: conf.airports_db }); q2 = new Query({ airports_db: conf.airports_db }); new WeatherPanel({ query: q1, parent: this }); new WeatherPanel({ query: q2, parent: this }); q1.set({ year: 2015, country: 'Italy', icao: 'LIRP' }); q2.set({ year: 2015, country: 'Japan', icao: 'RJTT' }); } return AppView; })(View); }).call(this);