I'm experiencing a weird error on Plunker, but the line having the issue is buried in the unreadable "minified" version of angular.js, specifically:
... at https://opensource.keycdn.com/angularjs/1.5.8/angular.min.js:6:412
So I want to look at the unminified version of angular.js to see if the error makes more sense.
Here's the call to the minified library supplied by plunker:
<script data-require="angularjs@1.5.8"
data-semver="1.5.8"
src="https://opensource.keycdn.com/angularjs/1.5.8/angular.min.js">
</script>
And I changed it to:
../1.5.8/angular.js
But I'm getting a 404. My guess is that opensource.keycdn.com
only supplies minified versions of libraries. How do I tell Plunker I want to use a non-minified version?