Skip to content

Commit

Permalink
VP-310: Fixed a pathing issue
Browse files Browse the repository at this point in the history
The concat task was point at "videoPlayer/js/..." but should have been "js/..."
  • Loading branch information
jobara committed May 3, 2013
1 parent d5cccdf commit 07a18e9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions GruntFile.js
Expand Up @@ -10,17 +10,17 @@ module.exports = function (grunt) {
"lib/jqeury-ui/js/jquery.ui.button.js",
"lib/captionator/js/captionator.js",
"lib/mediaelement.js",
"videoPlayer/js/VideoPlayer_framework.js",
"videoPlayer/js/VideoPlayer_showHide.js",
"videoPlayer/js/VideoPlayer.js",
"videoPlayer/js/VideoPlayer_html5Captionator.js",
"videoPlayer/js/VideoPlayer_controllers.js",
"videoPlayer/js/ToggleButton.js",
"videoPlayer/js/MenuButton.js",
"videoPlayer/js/VideoPlayer_media.js",
"videoPlayer/js/VideoPlayer_trascript.js",
"videoPlayer/js/VideoPlayer_intervalEventsConductor.js",
"videoPlayer/js/VideoPlayer_uiOptions.js"
"js/VideoPlayer_framework.js",
"js/VideoPlayer_showHide.js",
"js/VideoPlayer.js",
"js/VideoPlayer_html5Captionator.js",
"js/VideoPlayer_controllers.js",
"js/ToggleButton.js",
"js/MenuButton.js",
"js/VideoPlayer_media.js",
"js/VideoPlayer_trascript.js",
"js/VideoPlayer_intervalEventsConductor.js",
"js/VideoPlayer_uiOptions.js"
],
dest: "build/videoPlayer-all.js"
}
Expand Down

0 comments on commit 07a18e9

Please sign in to comment.