Skip to content

Commit f7f2b60

Browse files
Merge remote-tracking branch 'origin/v4'
2 parents e7c7ab7 + 50ac753 commit f7f2b60

File tree

19 files changed

+48
-58
lines changed

19 files changed

+48
-58
lines changed

MIT-LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 James South
3+
Copyright (c) 2013 - 2015 James South
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Responsive
2-
##A super lightweight HTML, Sass, CSS, and JavaScript framework for building responsive websites
2+
##A powerful, accessible, developer friendly framework for building responsive websites
33

44
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/ResponsiveBP/Responsive?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
55

@@ -23,8 +23,8 @@ Browser support covers IE9+ as well as all other modern browsers.
2323

2424
Several options are available for downloading Responsive:
2525

26-
- [Download the latest release](https://github.com/ResponsiveBP/Responsive/releases/download/4.0.2/responsive.zip).
27-
- [Download the latest release source](https://github.com/ResponsiveBP/Responsive/archive/4.0.2.zip).
26+
- [Download the latest release](https://github.com/ResponsiveBP/Responsive/releases/download/4.0.3/responsive.zip).
27+
- [Download the latest release source](https://github.com/ResponsiveBP/Responsive/archive/4.0.3.zip).
2828
- Clone the repo: `git clone https://github.com/ResponsiveBP/Responsive.git`.
2929
- Install with [Bower](http://bower.io): `bower install responsive`.
3030

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "responsive",
3-
"description": "A super lightweight HTML, Sass, CSS, and JavaScript framework for building responsive websites.",
4-
"version": "4.0.2",
3+
"description": "A powerful, accessible, developer friendly framework for building responsive websites.",
4+
"version": "4.0.3",
55
"homepage": "http://responsivebp.com",
66
"authors": [
77
"James South"

build/responsive.css

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Copyright (c), James South.
66
Licensed under the MIT License.
77
============================================================================== */
8-
/*! Responsive v4.0.2 | MIT License | responsivebp.com */
8+
/*! Responsive v4.0.3 | MIT License | responsivebp.com */
99
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
1010
html {
1111
font-family: sans-serif;
@@ -156,8 +156,8 @@ html {
156156
*, :before, :after {
157157
box-sizing: inherit; }
158158

159-
a:focus, area:focus, button:focus, input:focus, object:focus, select:focus, textarea:focus, [tabindex]:focus {
160-
outline-color: #4d90fe;
159+
:focus {
160+
outline: #4d90fe;
161161
outline-style: solid;
162162
outline-width: 1px;
163163
outline-offset: -1px; }
@@ -4537,8 +4537,10 @@ dt, dd {
45374537
margin-right: 10.375rem; } }
45384538
audio,
45394539
canvas,
4540+
iframe,
45404541
img,
4541-
video {
4542+
video,
4543+
svg {
45424544
vertical-align: middle; }
45434545

45444546
img {
@@ -5440,8 +5442,7 @@ button.modal-direction {
54405442

54415443
[aria-hidden="true"],
54425444
.hidden {
5443-
display: none !important;
5444-
visibility: hidden; }
5445+
display: none !important; }
54455446

54465447
.visuallyhidden {
54475448
border: 0;
@@ -5622,12 +5623,9 @@ button.modal-direction {
56225623
caption.visible-l {
56235624
display: table-caption !important; } }
56245625
@media print {
5625-
* {
5626+
*, :before, :after {
56265627
box-shadow: none !important;
5627-
text-shadow: none !important; }
5628-
5629-
html,
5630-
body {
5628+
text-shadow: none !important;
56315629
background: transparent !important;
56325630
color: #000 !important; }
56335631

build/responsive.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Licensed under the MIT License.
77
============================================================================== */
88

9-
/*! Responsive v4.0.2 | MIT License | responsivebp.com */
9+
/*! Responsive v4.0.3 | MIT License | responsivebp.com */
1010

1111
/*
1212
* Responsive Core
@@ -1954,7 +1954,7 @@
19541954
touch: true,
19551955
next: ">",
19561956
nextHint: "Next (" + (rtl ? "Left" : "Right") + " Arrow)",
1957-
prev: "<",
1957+
previous: "<",
19581958
previousHint: "Previous (" + (rtl ? "Right" : "Left") + " Arrow)",
19591959
closeHint: "Close (Esc)",
19601960
errorHint: "<p>An error has occured.</p>",
@@ -2015,9 +2015,11 @@
20152015
showEvent = $.Event(eshow),
20162016
shownEvent = $.Event(eshown),
20172017
complete = function () {
2018-
2018+
var $autofocus = $modal.find("[autofocus]");
20192019
$body.attr({ "tabindex": -1 });
2020-
$modal.data("currentModal", self.$element).attr({ "tabindex": 0 }).focus();
2020+
2021+
$modal.data("currentModal", self.$element).attr({ "tabindex": 0 });
2022+
$autofocus.length ? $autofocus.focus() : $modal.focus();
20212023

20222024
// Ensure that focus is maintained within the modal.
20232025
$(document).on(efocusin, function (event) {
@@ -2027,7 +2029,7 @@
20272029
$newTarget.length ? $newTarget.focus() : $modal.focus();
20282030

20292031
return false;
2030-
}
2032+
}
20312033
return true;
20322034
});
20332035

@@ -2252,7 +2254,7 @@
22522254
local = !notHash && !external,
22532255
$group = this.$group,
22542256
nextText = this.options.next + "<span class=\"visuallyhidden\">" + this.options.nextHint + "</span>",
2255-
prevText = this.options.prev + "<span class=\"visuallyhidden\">" + this.options.prevHint + "</span>",
2257+
prevText = this.options.previous + "<span class=\"visuallyhidden\">" + this.options.previousHint + "</span>",
22562258
iframeScroll = this.options.iframeScroll,
22572259
image = this.options.image || rimage.test(target),
22582260
iframe = this.options.iframe || notHash && external ? !image : false,

build/responsive.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/responsive.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<meta charset="utf-8" />

dist/responsive.zip

-23 Bytes
Binary file not shown.

src/js/responsive.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Licensed under the MIT License.
77
============================================================================== */
88

9-
/*! Responsive v4.0.2 | MIT License | responsivebp.com */
9+
/*! Responsive v4.0.3 | MIT License | responsivebp.com */
1010

1111
/*
1212
* Responsive Core

0 commit comments

Comments
 (0)