From 5d82b224f717aa38fc745369458ff1e62fb02e12 Mon Sep 17 00:00:00 2001 From: zurbchris Date: Tue, 1 Dec 2015 09:35:35 -0800 Subject: [PATCH] fixes #7334, adds slashes to prevent docs generator from compiling to markup --- js/foundation.drilldown.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/foundation.drilldown.js b/js/foundation.drilldown.js index 0d022b32e..acac64265 100644 --- a/js/foundation.drilldown.js +++ b/js/foundation.drilldown.js @@ -37,15 +37,15 @@ } Drilldown.defaults = { /** - * Markup used for JS generated back button. Prepended to submenu lists and deleted on `destroy` method. + * Markup used for JS generated back button. Prepended to submenu lists and deleted on `destroy` method, 'js-drilldown-back' class required. Remove the backslash (`\`) if copy and pasting. * @option - * @example '
  • Back
  • ' + * @example '<\li><\a>Back<\/a><\/li>' */ backButton: '
  • Back
  • ', /** - * Markup used to wrap drilldown menu. Use a class name for independent styling, or the JS applied class: `is-drilldown`. + * Markup used to wrap drilldown menu. Use a class name for independent styling; the JS applied class: `is-drilldown` is required. Remove the backslash (`\`) if copy and pasting. * @option - * @example '
    ' + * @example '<\div class="is-drilldown"><\/div>' */ wrapper: '
    ', /** -- 2.47.2