Skip to content

Commit

Permalink
Modular code base. Standalone build for browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
MadLittleMods committed Jan 16, 2015
1 parent bee97d7 commit da50c26
Show file tree
Hide file tree
Showing 19 changed files with 553 additions and 312 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1 +1,5 @@
# Ignore files that can be installed with `npm install`
node_modules
npm-debug.log

*.psd
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ The only dependency is [jQuery](https://jquery.com/).

```
<script src="jquery-1.11.1.js"></script>
<script src="jquery-carouselss.js"></script>
<script src="jquery-carouselss-standalone.js"></script>
<script>
$(document).ready(function() {
Expand All @@ -18,6 +18,11 @@ The only dependency is [jQuery](https://jquery.com/).
```


`jquery-carouselss-standalone.js` is a standalone build for browser use.

`jquery-carouselss.js` is a un-bundled UMD module.


# Demos

Title | Preview
Expand Down
2 changes: 1 addition & 1 deletion demos/barebones-demo/index.html
Expand Up @@ -5,7 +5,7 @@
<title>CarouselSS - Barebones demo</title>

<script src="../_base/js/jquery-1.11.1.js"></script>
<script src="../../jquery-carouselss.js"></script>
<script src="../../jquery-carouselss-standalone.js"></script>

<script class="carouselss-demo-script">
$(document).ready(function() {
Expand Down
2 changes: 1 addition & 1 deletion demos/custom-thumbnail-demo/index.html
Expand Up @@ -5,7 +5,7 @@
<title>CarouselSS - Custom Thumbnail demo</title>

<script src="../_base/js/jquery-1.11.1.js"></script>
<script src="../../jquery-carouselss.js"></script>
<script src="../../jquery-carouselss-standalone.js"></script>

<script class="carouselss-demo-script">
$(document).ready(function() {
Expand Down
2 changes: 1 addition & 1 deletion demos/frame-switch-fade-transition-demo/index.html
Expand Up @@ -5,7 +5,7 @@
<title>CarouselSS - Frame switch fade transition demo</title>

<script src="../_base/js/jquery-1.11.1.js"></script>
<script src="../../jquery-carouselss.js"></script>
<script src="../../jquery-carouselss-standalone.js"></script>

<script class="carouselss-demo-script">
$(document).ready(function() {
Expand Down
2 changes: 1 addition & 1 deletion demos/next-prev-controls-demo/index.html
Expand Up @@ -5,7 +5,7 @@
<title>CarouselSS - next/prev Controls demo</title>

<script src="../_base/js/jquery-1.11.1.js"></script>
<script src="../../jquery-carouselss.js"></script>
<script src="../../jquery-carouselss-standalone.js"></script>

<script class="carouselss-demo-script">
$(document).ready(function() {
Expand Down
2 changes: 1 addition & 1 deletion demos/overlay-demo/index.html
Expand Up @@ -5,7 +5,7 @@
<title>CarouselSS - Overlay demo</title>

<script src="../_base/js/jquery-1.11.1.js"></script>
<script src="../../jquery-carouselss.js"></script>
<script src="../../jquery-carouselss-standalone.js"></script>

<script class="carouselss-demo-script">
$(document).ready(function() {
Expand Down
1 change: 1 addition & 0 deletions jquery-carouselss-standalone.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit da50c26

Please sign in to comment.