Skip to content

Commit

Permalink
Merge pull request #5601 from ggetz/define-jsep
Browse files Browse the repository at this point in the history
jsep is undefined fix
  • Loading branch information
mramato authored Jul 10, 2017
2 parents ed53607 + 75aefd4 commit 12e1d6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Change Log
==========

### 1.36 2017-08-01
### 1.36 - 2017-08-01

* Fixed a bug where a Model's compressed textures were not being displayed. [#5596](https://github.com/AnalyticalGraphicsInc/cesium/pull/5596)
* Fixed a bug where jsep was undefined when using webpack [#5593](https://github.com/AnalyticalGraphicsInc/cesium/issues/5593)

### 1.35 - 2017-07-05

Expand Down
5 changes: 4 additions & 1 deletion Source/ThirdParty/jsep.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,5 +680,8 @@ define(function() {
}
}(this));

return jsep.noConflict();
// `jsep` only exists when running in the browser
if (typeof jsep !== 'undefined') {
return jsep.noConflict();
}
});

0 comments on commit 12e1d6d

Please sign in to comment.