Skip to content

Commit

Permalink
Update 1.19
Browse files Browse the repository at this point in the history
Rewrited Grab/Touch events
  • Loading branch information
hellobart committed Aug 29, 2013
1 parent acbf2e8 commit 403bfc5
Show file tree
Hide file tree
Showing 9 changed files with 290 additions and 168 deletions.
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) 2013

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7 changes: 5 additions & 2 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OwlCarousel #
> v.1.18
Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.
> v.1.19
>Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.
## [OwlCarousel landing page](http://owlgraphic.com/owlcarousel)

Expand Down Expand Up @@ -61,3 +61,6 @@ $(".owl-carousel").owlCarousel();

### For more information visit [OwlCarousel landing page](http://owlgraphic.com/owlcarousel)

License
------------
The MIT License (MIT)
16 changes: 8 additions & 8 deletions demos/images.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ <h1>Setup</h1>
<pre class="pre-show prettyprint linenums">
&lt;div id="owl-demo"&gt;

&lt;div class="item"&gt;&lt;img src="assets/owl1.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl2.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl3.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl4.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl5.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl6.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl7.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl8.jpg" alt="Owl Image"&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl1.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl2.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl3.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl4.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl5.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl6.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl7.jpg" alt="Owl Image"&gt;&lt;/div&gt;
&lt;div class="item"&gt;&lt;img src="assets/owl8.jpg" alt="Owl Image"&gt;&lt;/div&gt;

&lt;/div&gt;
</pre>
Expand Down
28 changes: 26 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<h1>OWL Carousel </h1>
<h3>Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.</h3>
<a class="btn btn-success btn-large" href="owl.carousel.zip">Download for FREE</a>
<p class="muted"><a class="muted" href="https://github.com/OwlFonk/OwlCarousel">Github</a> / v1.18 </p>
<p class="muted"><a class="muted" href="https://github.com/OwlFonk/OwlCarousel">Github</a> / v1.19 </p>
</div>
</div>
</div>
Expand Down Expand Up @@ -435,6 +435,30 @@ <h2>3. API</h2>
</div>
</div>

<div class="container">
<div class="row">
<div class="span12">
<h1>Disqus</h1>

<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'owlcarousel'; // required: replace example with your forum shortname

/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div>
</div>


<div id="footer">
<div class="container">
<div class="row">
Expand All @@ -447,7 +471,7 @@ <h5>Bartosz Wojciechowski 2013 / @OwlFonk / <a href="mailto:[email protected]?s


<script src="assets/js/jquery-1.9.1.min.js"></script>
<script src="owl-carousel/owl.carousel.js"></script>
<script src="owl-carousel/owl.carousel.min.js"></script>

<!-- Frontpage Demo -->
<script>
Expand Down
Binary file modified owl-carousel/grabbing.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion owl-carousel/owl.carousel.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Core Owl Carousel CSS File
* v1.18
* v1.19
*/

/* clearfix */
Expand All @@ -17,6 +17,7 @@
display: none;
position: relative;
width: 100%;
-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
display: none;
Expand Down
Loading

0 comments on commit 403bfc5

Please sign in to comment.