diff --git a/react/reducers/channel.js b/react/reducers/channel.js index 30dd0166..a3b811c0 100644 --- a/react/reducers/channel.js +++ b/react/reducers/channel.js @@ -8,10 +8,6 @@ const initialState = { }, }; -/* -Reducers describe how the application's state changes in response to actions -*/ - export default function (state = initialState, action) { switch (action.type) { case actions.CHANNEL_UPDATE: diff --git a/react/reducers/publish.js b/react/reducers/publish.js index e964fcec..c23e6e2b 100644 --- a/react/reducers/publish.js +++ b/react/reducers/publish.js @@ -26,10 +26,6 @@ const initialState = { }, }; -/* -Reducers describe how the application's state changes in response to actions -*/ - export default function (state = initialState, action) { switch (action.type) { case actions.FILE_SELECTED: diff --git a/react/reducers/show.js b/react/reducers/show.js index 4ed3f0d3..6a1b32df 100644 --- a/react/reducers/show.js +++ b/react/reducers/show.js @@ -27,10 +27,6 @@ const initialState = { assetList : {}, // same schema as showAsset }; -/* -Reducers describe how the application's state changes in response to actions -*/ - export default function (state = initialState, action) { switch (action.type) { // handle request diff --git a/views/partials/asset.handlebars b/views/partials/asset.handlebars deleted file mode 100644 index fefe944f..00000000 --- a/views/partials/asset.handlebars +++ /dev/null @@ -1,36 +0,0 @@ -
-
- - -
- -
- - diff --git a/views/partials/image.handlebars b/views/partials/image.handlebars deleted file mode 100644 index 1091a2e5..00000000 --- a/views/partials/image.handlebars +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/views/partials/video.handlebars b/views/partials/video.handlebars deleted file mode 100644 index d968c652..00000000 --- a/views/partials/video.handlebars +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/views/popular.handlebars b/views/popular.handlebars deleted file mode 100644 index 7f3072c2..00000000 --- a/views/popular.handlebars +++ /dev/null @@ -1,24 +0,0 @@ -{{> navBar}} -
-
- {{#each trendingAssets}} - {{> gridItem}} - {{/each}} -
-
- - - - diff --git a/views/showLite.handlebars b/views/showLite.handlebars deleted file mode 100644 index 31b5ee78..00000000 --- a/views/showLite.handlebars +++ /dev/null @@ -1,3 +0,0 @@ -
- {{> asset }} -
\ No newline at end of file