From 07a18e9e8ad6a8ef02d1c81bb969183b6146a402 Mon Sep 17 00:00:00 2001 From: Justin Obara Date: Fri, 3 May 2013 11:00:26 -0400 Subject: [PATCH] VP-310: Fixed a pathing issue The concat task was point at "videoPlayer/js/..." but should have been "js/..." --- GruntFile.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/GruntFile.js b/GruntFile.js index 3df6ae1..fc75199 100644 --- a/GruntFile.js +++ b/GruntFile.js @@ -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" }