Skip to content

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Sep 5, 2014
1 parent 4fec3ef commit 07cedc2
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "responsive",
"description": "A super lightweight HTML, SASS, CSS, and JavaScript framework for building responsive websites.",
"version": "3.1.1",
"version": "3.1.2",
"homepage": "http://responsivebp.com",
"authors": [
"James South"
Expand Down
2 changes: 1 addition & 1 deletion build/responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Copyright (c), James South.
Licensed under the MIT License.
============================================================================== */
/*! Responsive v3.1.1 | MIT License | responsivebp.com */
/*! Responsive v3.1.2 | MIT License | responsivebp.com */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
Expand Down
7 changes: 6 additions & 1 deletion build/responsive.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Licensed under the MIT License.
============================================================================== */

/*! Responsive v3.1.1 | MIT License | responsivebp.com */
/*! Responsive v3.1.2 | MIT License | responsivebp.com */

/*
* Responsive Core
Expand Down Expand Up @@ -117,6 +117,11 @@
/// Ensures that the transition end callback is triggered.
/// http://blog.alexmaccaw.com/css-transitions
///</summary>

if (!$.support.transition) {
return this;
}

var rtransition = /\d+(.\d+)/,
called = false,
$this = $(this),
Expand Down
2 changes: 1 addition & 1 deletion build/responsive.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/responsive.min.js

Large diffs are not rendered by default.

Binary file modified dist/responsive.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "responsive",
"description": "A super lightweight HTML, SASS, CSS, and JavaScript framework for building responsive websites.",
"version": "3.1.1",
"version": "3.1.2",
"keywords": [
"responsive",
"css",
Expand Down
7 changes: 6 additions & 1 deletion src/js/responsive.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Licensed under the MIT License.
============================================================================== */

/*! Responsive v3.1.1 | MIT License | responsivebp.com */
/*! Responsive v3.1.2 | MIT License | responsivebp.com */

/*
* Responsive Core
Expand Down Expand Up @@ -117,6 +117,11 @@
/// Ensures that the transition end callback is triggered.
/// http://blog.alexmaccaw.com/css-transitions
///</summary>

if (!$.support.transition) {
return this;
}

var rtransition = /\d+(.\d+)/,
called = false,
$this = $(this),
Expand Down
2 changes: 1 addition & 1 deletion src/sass/partials/_copyright.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
Licensed under the MIT License.
============================================================================== */

/*! Responsive v3.1.1 | MIT License | responsivebp.com */
/*! Responsive v3.1.2 | MIT License | responsivebp.com */

0 comments on commit 07cedc2

Please sign in to comment.