Skip to content

Commit

Permalink
add new files to app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Aug 17, 2013
1 parent 808b112 commit 067d81f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
/*global define */
define([
"./ui/front",
"./play",
"./ui/next",
"./ui/slideshow",
"./ui/panels",
"./ui/sound",
"./ui/pictures",
"./data/sound",
"./data/pictures",
"./vendor/soundcloud",
"./vendor/500px",
// "soundmanager"
], function ( Front, Play, Next, Slides, Panels, Sound, Pictures ) {
], function ( Front, Panels, UISound, UIPictures, DataSound, DataPictures ) {
"use strict";
SC.initialize({
client_id: "b837f6e628242bc8cccf17121cb206f9"
Expand All @@ -20,11 +18,12 @@ define([
sdk_key: "43a60a7ff8d7a167458cc0e8795a0ccdb99abaeb"
});


function attachToDocument ( component ) {
component.attachTo( document )
}

var activeComponents = [ Front, Play, Slides, Panels, Sound, Pictures ];
var activeComponents = [ Front, Panels, UISound, UIPictures, DataSound, DataPictures ];

return {
initialise: function () {
Expand Down

0 comments on commit 067d81f

Please sign in to comment.