diff options
| author | Sean Brant | 2013-03-11 21:53:56 -0500 |
|---|---|---|
| committer | Sean Brant | 2013-03-11 21:53:56 -0500 |
| commit | 1f6755a36658eb0a926ad85a61dc3c14ab3135e3 (patch) | |
| tree | ea800d5bd80c4a245eb686f424fc356efa1deb50 /examples | |
| parent | b9a493e0b729af31d643ff1db1ccca83304d79ca (diff) | |
| download | pykss-1f6755a36658eb0a926ad85a61dc3c14ab3135e3.tar.bz2 | |
Fixes modifier classes inside styleguideblocks
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/djangoproject/djangoproject/templates/styleguide.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/djangoproject/djangoproject/templates/styleguide.html b/examples/djangoproject/djangoproject/templates/styleguide.html index 2aa6500..1817a27 100644 --- a/examples/djangoproject/djangoproject/templates/styleguide.html +++ b/examples/djangoproject/djangoproject/templates/styleguide.html @@ -14,7 +14,7 @@ {% endcomment %} {% styleguideblock styleguide "1.1" %} - <button class="{{ modifier.class_name }}">Example Button</button> + <button class="{{ modifier_class }}">Example Button</button> {% endstyleguideblock %} {% verbatim %} @@ -22,7 +22,7 @@ <pre> <code> {% styleguideblock styleguide "1.1" %} - <button class="{{ modifier.class_name }}">Example Button</button> + <button class="{{ modifier_class }}">Example Button</button> {% endstyleguideblock %} </code> </pre> |
