Skip to content

Commit

Permalink
Small doc tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Spencer committed Feb 11, 2012
1 parent 4dda5f0 commit 08ce666
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
13 changes: 5 additions & 8 deletions app.js
@@ -1,11 +1,3 @@
/*
* This app uses a Carousel and a JSON-P proxy so make sure they're loaded first
*/
Ext.require([
'Ext.carousel.Carousel',
'Ext.data.proxy.JsonP'
]);

/**
* Our app is pretty simple - it just grabs the latest images from NASA's Astronomy Picture Of the Day
* (http://apod.nasa.gov/apod/astropix.html) and displays them in a Carousel. This file drives most of
Expand All @@ -24,6 +16,11 @@ Ext.application({
stores: ['Pictures'],
views: ['Picture'],

requires: [
'Ext.carousel.Carousel',
'Ext.data.proxy.JsonP'
],

launch: function() {
var titleVisible = false,
info, carousel;
Expand Down
3 changes: 3 additions & 0 deletions app/store/Pictures.js
@@ -1,3 +1,6 @@
/**
* Grabs the APOD RSS feed from Google's Feed API, passes the data to our Model to decode
*/
Ext.define('apod.store.Pictures', {
extend: 'Ext.data.Store',

Expand Down

0 comments on commit 08ce666

Please sign in to comment.