From cf8f1ec0cdfa8f8fb07ed0aa85030584dcadc8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Sun, 19 Jan 2014 13:27:17 +0100 Subject: Improve tags --- docs/examples/offcanvas/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/index.html b/docs/examples/offcanvas/index.html index 1da52ff24..fa83f978d 100644 --- a/docs/examples/offcanvas/index.html +++ b/docs/examples/offcanvas/index.html @@ -3,7 +3,7 @@ - + -- cgit v1.2.3 From 8939268a33957c3a8599881f6312ccbe00b5c5dd Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 30 Jan 2014 19:55:11 +0200 Subject: Update jQuery to v1.11.0. Also, use Google's CDN per #11369. --- docs/examples/offcanvas/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/index.html b/docs/examples/offcanvas/index.html index fa83f978d..439c79360 100644 --- a/docs/examples/offcanvas/index.html +++ b/docs/examples/offcanvas/index.html @@ -123,7 +123,7 @@ - + -- cgit v1.2.3 From 9f668a557336f271f3c1bf701cc6a472e59aeedf Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 31 Jan 2014 14:20:33 +0200 Subject: Add examples/**/*.css in csscomb task. --- docs/examples/offcanvas/offcanvas.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index ef632dc00..50130a885 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -20,9 +20,9 @@ footer { @media screen and (max-width: 767px) { .row-offcanvas { position: relative; - -webkit-transition: all 0.25s ease-out; - -moz-transition: all 0.25s ease-out; - transition: all 0.25s ease-out; + -webkit-transition: all .25s ease-out; + -moz-transition: all .25s ease-out; + transition: all .25s ease-out; } .row-offcanvas-right -- cgit v1.2.3 From bdf9ce4c45b81e62ab7ebd88a9e3daa98ecdd10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Fri, 7 Feb 2014 19:31:08 +0100 Subject: Omit semicolons consistently in docs --- docs/examples/offcanvas/offcanvas.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/offcanvas.js b/docs/examples/offcanvas/offcanvas.js index 12f2dff51..ade5751fd 100644 --- a/docs/examples/offcanvas/offcanvas.js +++ b/docs/examples/offcanvas/offcanvas.js @@ -1,5 +1,5 @@ -$(document).ready(function() { - $('[data-toggle=offcanvas]').click(function() { - $('.row-offcanvas').toggleClass('active'); +$(document).ready(function () { + $('[data-toggle=offcanvas]').click(function () { + $('.row-offcanvas').toggleClass('active') }); }); \ No newline at end of file -- cgit v1.2.3