Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zod- committed Sep 29, 2016
1 parent b0826d4 commit b3cb319
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsVideoUrlParser",
"version": "0.2.2",
"version": "0.2.3",
"homepage": "https://github.com/Zod-/jsVideoUrlParser",
"main": "./dist/jsVideoUrlParser.min.js",
"authors": [{
Expand Down
8 changes: 4 additions & 4 deletions dist/jsVideoUrlParser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (w) {
(function () {
'use strict';

/*jshint unused:false */
Expand Down Expand Up @@ -766,10 +766,10 @@ Youku.prototype.createFlashUrl = function (vi, params) {

urlParser.bind(new Youku());

if (typeof w !== 'undefined') {
w.urlParser = urlParser;
if (typeof window !== 'undefined') {
window.urlParser = urlParser;
}
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = urlParser;
}
})(window);
})();
Loading

0 comments on commit b3cb319

Please sign in to comment.