From de25e03b4a393a3406ee71c5b52c9355a3f5b8af Mon Sep 17 00:00:00 2001 From: strainger Date: Wed, 5 Apr 2017 10:49:02 -0500 Subject: [PATCH] Fixed wrong case in code sample. There were two instances where the wrong case was used in the "Off-canvas Position" section of the documentation. Instead of "Split" the example had "SPlit" which would still work, but is unclean. It is also an official Off-canvas example, so it could be spreading through test code for people learning Foundation and lead to confusion. I simply made the "P" lowercase on lines 140 and 146. I quoted the code below. Before Fix line 140: Before Fix 146:
--- docs/pages/off-canvas.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/off-canvas.md b/docs/pages/off-canvas.md index 553c5780e..9d3e789d0 100644 --- a/docs/pages/off-canvas.md +++ b/docs/pages/off-canvas.md @@ -137,13 +137,13 @@ Here's a complete example that can be pasted into the `` tag of your page. Foundation's Off-canvas is set to `position: fixed` by default using the `.off-canvas` class. This makes the off-canvas panel sit in relation to the viewport, and is the desired behavior for most users. However you can also set an off-canvas container to `position: absolute` by using the alternative class `.off-canvas-absolute`. Also be sure to use the `.off-canvas-wrapper` when using this method. ```html_example - +
-
+
-- 2.47.2