Skip to content

Commit 07de762

Browse files
Fixing broken links caused by character-casing
1 parent 1f4a33f commit 07de762

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

IndexedDBShim.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<description>A polyfill for IndexedDB using WebSql.</description>
1010
</metadata>
1111
<files>
12-
<file src="dist\indexeddbshim.js" target="content\Scripts\IndexedDBShim.js" />
13-
<file src="dist\indexeddbshim.min.js" target="content\Scripts\IndexedDBShim.min.js" />
14-
<file src="dist\indexeddbshim.min.map" target="content\Scripts\IndexedDBShim.min.map" />
12+
<file src="dist\indexeddbshim.js" target="content\Scripts\indexeddbshim.js" />
13+
<file src="dist\indexeddbshim.min.js" target="content\Scripts\indexeddbshim.min.js" />
14+
<file src="dist\indexeddbshim.min.js.map" target="content\Scripts\indexeddbshim.min.js.map" />
1515
</files>
1616
</package>

examples/dbjs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<html>
22
<head>
33
<title>DB.JS on IndexedDB Shim</title>
4-
<script type = "text/javascript" src = "/IndexedDBShim/dist/IndexedDBShim.min.js">
4+
<script type = "text/javascript" src = "/IndexedDBShim/dist/indexeddbshim.min.js">
55
</script>
66
<script type = "text/javascript">
77
var server;

examples/pouchdb.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title>Pouch DB on IndexedDB Shim</title>
44
<script type = "text/javascript" src = "http://cloud.github.com/downloads/daleharvey/pouchdb/pouch.alpha.js">
55
</script>
6-
<script type = "text/javascript" src = "/IndexedDBShim/dist/IndexedDBShim.min.js">
6+
<script type = "text/javascript" src = "/IndexedDBShim/dist/indexeddbshim.min.js">
77
</script>
88
<script type = "text/javascript">
99
var db;

0 commit comments

Comments
 (0)