Pierwszy przycisk w toolbarze jest aktywowany po zaƂadowaniu strony.
[redakcja.git] / apps / toolbar / templates / toolbar / toolbar.html
index 0338417..dcc64a9 100644 (file)
@@ -2,13 +2,13 @@
 <div id="toolbar">
     <ol id="toolbar-tabs">
         {% for group in groups %}
-        <li p:button-list="{{ group.slug }}">{{ group.name }}</li>
+        <li p:button-list="{{ group.slug }}" {% if forloop.first %}class="active"{% endif %}>{{ group.name }}</li>
         {% endfor %}
     </ol>
     <div style="clear: both; height: 0; width: 0">&nbsp;</div>
     <div id="toolbar-buttons">
         {% for group in groups %}
-        <ol id="{{ group.slug }}" style="display:none">
+        <ol id="{{ group.slug }}" {% if not forloop.first %}style="display:none"{% endif %}>
             {% for button in group.button_set.all %}
             <li p:tag="{{ button.tag }}" {% if button.key %}p:key="{{ button.key|keycode }}" title="Ctrl+{{ button.key }}"{% endif %}>{{ button.label }}</li>
             {% endfor %}