Skip to content

Commit

Permalink
minified last version
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin Saguin committed Mar 14, 2016
1 parent bc01c88 commit 4aecf88
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion grunt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grunt-swipebox",
"version": "1.4.1",
"version": "1.4.4",
"description": "A touchable jQuery lightbox",
"repository": {
"type": "git",
Expand Down
12 changes: 6 additions & 6 deletions src/js/jquery.swipebox.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Swipebox v1.4.1 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
/*! Swipebox v1.4.4 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */

;( function ( window, document, $, undefined ) {

Expand Down Expand Up @@ -92,12 +92,12 @@
}

elements = [];
var index , relType, relVal;
var index, relType, relVal;

// Allow for HTML5 compliant attribute before legacy use of rel
if ( ! relVal ) {
relType = 'data-rel';
relVal = $( this ).attr( relType );
relVal = $( this ).attr( relType );
}

if ( ! relVal ) {
Expand Down Expand Up @@ -896,12 +896,12 @@
}, 500 );
}
},

nextSlide : function (index) {
/* jshint unused:false */
nextSlide : function ( index ) {
// Callback for next slide
},

prevSlide : function (index) {
prevSlide : function ( index ) {
// Callback for prev slide
},

Expand Down
Loading

0 comments on commit 4aecf88

Please sign in to comment.