1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
From: Sergio Durigan Junior <sergiodj@sergiodj.net>
Date: Wed, 10 Aug 2016 21:33:58 -0400
Subject: Use system jQuery on examples
---
examples/basic.html | 4 ++--
examples/colspan.html | 4 ++--
examples/complex.html | 4 ++--
examples/large-table.html | 4 ++--
examples/multicolumn-sort.html | 4 ++--
examples/with-settings.html | 4 ++--
6 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/examples/basic.html b/examples/basic.html
index c7f8146..d44ab7c 100644
--- a/examples/basic.html
+++ b/examples/basic.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
$(function(){
$("table").stupidtable();
diff --git a/examples/colspan.html b/examples/colspan.html
index e2cf10d..d3be46c 100644
--- a/examples/colspan.html
+++ b/examples/colspan.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort (colspan test)</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
$(function(){
$("table").stupidtable();
diff --git a/examples/complex.html b/examples/complex.html
index 7496e86..dc1434d 100644
--- a/examples/complex.html
+++ b/examples/complex.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort (complex example)</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
$(function(){
// Helper function to convert a string of the form "Mar 15, 1987" into
diff --git a/examples/large-table.html b/examples/large-table.html
index 798318b..77d096b 100644
--- a/examples/large-table.html
+++ b/examples/large-table.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort (large table example)</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
$(function(){
// Helper function to convert a string of the form "Mar 15, 1987" into a Date object.
diff --git a/examples/multicolumn-sort.html b/examples/multicolumn-sort.html
index 17d6026..c0217b5 100644
--- a/examples/multicolumn-sort.html
+++ b/examples/multicolumn-sort.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
$(function(){
$("table").stupidtable();
diff --git a/examples/with-settings.html b/examples/with-settings.html
index d138898..4cb5c34 100644
--- a/examples/with-settings.html
+++ b/examples/with-settings.html
@@ -2,8 +2,8 @@
<html>
<head>
<title>Stupid jQuery table sort</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
- <script src="../stupidtable.js?dev"></script>
+ <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
+ <script src="/usr/share/javascript/jquery-stupidtable/stupidtable.js?dev"></script>
<script>
// ======================================================
// Example 1
|