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 From 6d232c2b9b5588cc2e06d0011e33c58e0e80aea4 Mon Sep 17 00:00:00 2001 From: Marti Kaljuve Date: Tue, 11 Feb 2014 18:18:21 +0200 Subject: Add initial right and left properties to offcanvas example for transitions. --- docs/examples/offcanvas/offcanvas.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index 50130a885..eeace1601 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -25,6 +25,14 @@ footer { transition: all .25s ease-out; } + .row-offcanvas-right { + right: 0; + } + + .row-offcanvas-left { + left: 0; + } + .row-offcanvas-right .sidebar-offcanvas { right: -50%; /* 6 columns */ -- cgit v1.2.3 From cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf Mon Sep 17 00:00:00 2001 From: Bas Bosman Date: Sat, 22 Feb 2014 11:17:58 +0100 Subject: Add autoprefixer --- docs/examples/offcanvas/offcanvas.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/offcanvas') diff --git a/docs/examples/offcanvas/offcanvas.css b/docs/examples/offcanvas/offcanvas.css index eeace1601..2a72199d5 100644 --- a/docs/examples/offcanvas/offcanvas.css +++ b/docs/examples/offcanvas/offcanvas.css @@ -21,7 +21,7 @@ footer { .row-offcanvas { position: relative; -webkit-transition: all .25s ease-out; - -moz-transition: all .25s ease-out; + -o-transition: all .25s ease-out; transition: all .25s ease-out; } -- cgit v1.2.3