Skip to content

Commit a340aef

Browse files
committed
moved demo files for easier gh-pages maintenance
1 parent d86281f commit a340aef

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

demo/css/base.css css/base.css

File renamed without changes.
File renamed without changes.

demo/css/simple.css css/simple.css

File renamed without changes.
File renamed without changes.
File renamed without changes.

demo/index.html index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>SimpleSlideView Demo (Basic)</title>
88
<link rel="stylesheet" href="css/base.css">
99
<!-- including this will automatically enable 3D transforms where supported -->
10-
<script src="../vendor/modernizr.custom.js"></script>
10+
<script src="vendor/modernizr.custom.js"></script>
1111
</head>
1212
<body>
1313

@@ -88,7 +88,7 @@ <h2>Where to get it</h2>
8888
</div>
8989

9090
<!-- this library removes the 300ms delay on browsers with touch UIs -->
91-
<script src="../vendor/fastclick.js"></script>
91+
<script src="vendor/fastclick.js"></script>
9292

9393
<script>
9494
// "Zepto is a minimalist JavaScript library for modern browsers with a
@@ -99,13 +99,13 @@ <h2>Where to get it</h2>
9999
, lib = useZepto ? 'zepto' : 'jquery'
100100
, scrollPlugin = useZepto ? 'scroll' : 'scrollTo';
101101
document.write(
102-
'<script src=../vendor/' + lib + '.min.js><\/script>' +
103-
'<script src=../vendor/' + lib + '.' + scrollPlugin + '.min.js><\/script>'
102+
'<script src=vendor/' + lib + '.min.js><\/script>' +
103+
'<script src=vendor/' + lib + '.' + scrollPlugin + '.min.js><\/script>'
104104
);
105105
</script>
106106

107107
<!-- including the (minified) plugin, because duh -->
108-
<script src="../lib/simpleslideview.min.js"></script>
108+
<script src="lib/simpleslideview.min.js"></script>
109109

110110
<script>
111111
// Here is a very basic implementation. '.views' will be

demo/responsive.html responsive.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="stylesheet" href="css/base.css">
99
<link rel="stylesheet" href="css/responsive.css">
1010
<!-- including this will automatically enable 3D transforms where supported -->
11-
<script src="../vendor/modernizr.custom.js"></script>
11+
<script src="vendor/modernizr.custom.js"></script>
1212
</head>
1313
<body>
1414

@@ -88,7 +88,7 @@ <h2>Where to get it</h2>
8888
</div>
8989

9090
<!-- this library removes the 300ms delay on browsers with touch UIs -->
91-
<script src="../vendor/fastclick.js"></script>
91+
<script src="vendor/fastclick.js"></script>
9292

9393
<script>
9494
// "Zepto is a minimalist JavaScript library for modern browsers with a
@@ -99,13 +99,13 @@ <h2>Where to get it</h2>
9999
, lib = useZepto ? 'zepto' : 'jquery'
100100
, scrollPlugin = useZepto ? 'scroll' : 'scrollTo';
101101
document.write(
102-
'<script src=../vendor/' + lib + '.min.js><\/script>' +
103-
'<script src=../vendor/' + lib + '.' + scrollPlugin + '.min.js><\/script>'
102+
'<script src=vendor/' + lib + '.min.js><\/script>' +
103+
'<script src=vendor/' + lib + '.' + scrollPlugin + '.min.js><\/script>'
104104
);
105105
</script>
106106

107107
<!-- including the (minified) plugin, because duh -->
108-
<script src="../lib/simpleslideview.min.js"></script>
108+
<script src="lib/simpleslideview.min.js"></script>
109109

110110
<script>
111111

0 commit comments

Comments
 (0)