e47dead052
Bower was used to install multiple versions of jQuery which is now handled using Yarn aliases. The remaining two packages, closure-compiler and ng-closure-compiler were installed from zip files which is not supported by Yarn (see https://github.com/yarnpkg/yarn/issues/1483); the first of them exists on npm as the google-closure-compiler but only versions newer than we used are published and they don't work with ng-closure-compiler so - instead - both were checked in to the repository. Fixes #16268 Fixes #14961 Ref yarnpkg/yarn#1483
15 lines
438 B
HTML
15 lines
438 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="test" ng-jq="jQuery_2_1_0">
|
|
<body>
|
|
<span>{{jqueryVersion}}</span>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
|
|
<script>
|
|
var jQuery_2_1_0 = jQuery.noConflict();
|
|
</script>
|
|
<script src="../../../../node_modules/jquery/dist/jquery.js"></script>
|
|
<script src="angular.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|