From 79552d266746a23efe5a6beaf250c499c6d54884 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 15 Sep 2016 15:16:37 +1200 Subject: [PATCH] Use CDN jQuery for TestSessionController We shouldn't hotlink to static asset files in other modules since these paths aren't a "public api", and tend to move around. --- code/TestSessionController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/TestSessionController.php b/code/TestSessionController.php index 46fa667..d3770ac 100644 --- a/code/TestSessionController.php +++ b/code/TestSessionController.php @@ -74,7 +74,7 @@ class TestSessionController extends Controller return; } - Requirements::javascript('framework/thirdparty/jquery/jquery.js'); + Requirements::javascript('http://code.jquery.com/jquery-1.7.2.min.js'); Requirements::javascript('testsession/javascript/testsession.js'); }