Skip to content

Commit

Permalink
Move distribution files to top level directory
Browse files Browse the repository at this point in the history
  • Loading branch information
David Karchmer committed Oct 6, 2015
1 parent 05859a1 commit 2072f5c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng-jwplayer",
"version": "0.0.4",
"main": "dist/jwplayer.js",
"version": "0.0.5",
"main": "jwplayer.js",
"ignore": [
"src",
"node_modules",
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var errorHandler = function(title) {

var paths = {
src: ['src/jwplayer.module.js', 'src/jwplayer.service.js', 'src/jwplayer.directive.js'],
dist: 'dist',
dist: '.',
jsFile: 'jwplayer.js',
jsMinFile: 'jwplayer.min.js'
};
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>{{ name }}</h1>
<!-- Remplace xxxxxxxxx with your license code given by JWPLayer -->
<script src="https://content.jwplatform.com/libraries/xxxxxxxxxxxx.js"></script>

<script type="text/javascript" src="dist/jwplayer.js"></script>
<script type="text/javascript" src="jwplayer.js"></script>
<script>

var myApp = angular.module('myApp', ['ng-jwplayer']);
Expand All @@ -37,7 +37,7 @@ <h1>{{ name }}</h1>
type: 'mp4'
};

$scope.file = $sce.trustAsResourceUrl('http://vjs.zencdn.net/v/oceans.mp4');
$scope.file = $sce.trustAsResourceUrl('http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4');

}]);
</script>
Expand Down
7 changes: 1 addition & 6 deletions dist/jwplayer.js → jwplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
]);
})();
/* global jwplayer */
/**
* Created by David Karchmer on 9/11/15.
*/

(function () {
'use strict';
Expand Down Expand Up @@ -53,9 +50,7 @@
JWPlayerService.$inject = ["$log"];

})();
/**
* Created by David Karchmer on 9/11/15.
*/

(function() {
'use strict';

Expand Down
File renamed without changes.

0 comments on commit 2072f5c

Please sign in to comment.