From 1a8fc8d2b60c7fee4a0f1a21a0fdbeaa4b7dac43 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= <m.goleb@gmail.com>
Date: Tue, 13 May 2014 02:45:10 +0200
Subject: [PATCH] Use jQuery 2 in examples

Since pdf.js doesn't work in IE8 anyway, it doesn't make sense to use
jQuery 1 with it. jQuery 2 should be used in every example that needs
jQuery.
---
 examples/text-selection/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/text-selection/index.html b/examples/text-selection/index.html
index 9837654ec..f844465f4 100644
--- a/examples/text-selection/index.html
+++ b/examples/text-selection/index.html
@@ -2,7 +2,7 @@
     <head>
         <title>Minimal pdf.js text-selection demo</title>
         <link href="css/minimal.css" rel="stylesheet" media="screen" />
-        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
+        <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
 
         <!-- you will need to run "node make generic" first before you can use this -->
         <script src="../../build/generic/build/pdf.js" type="text/javascript"></script>