Changeset 1638:9a3c2618fa60
- Timestamp:
- 08/30/13 20:33:00 (10 years ago)
- Branch:
- default
- Children:
- 1646:6d5d3d97de1e, 1647:f4f60adff230, 1662:be1cbef7145c, 1712:236b6ebf66a5, 1894:e3ce13c99e0e
- Location:
- admin/js
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_index.js
r1500 r1638 66 66 }); 67 67 } 68 $('#new_cat').toggleWithLegend( 69 $('#new_cat').parent().children().not('#new_cat'),70 {} // no cookie on new category as we don't use this every day71 );68 $('#new_cat').toggleWithLegend($('#new_cat').parent().children().not('#new_cat'), { 69 // no cookie on new category as we don't use this every day 70 legend_click: true 71 }); 72 72 } 73 73 74 74 // allow to hide quick entry div, and remember choice 75 75 $('#quick h3').toggleWithLegend($('#quick').children().not('h3'),{ 76 legend_click: true, 76 77 cookie: 'dcx_quick_entry' 77 78 }); -
admin/js/_post.js
r1619 r1638 160 160 $('#excerpt-area label').toggleWithLegend($('#excerpt-area').children().not('label'),{ 161 161 cookie: 'dcx_post_excerpt', 162 legend_click: true, 162 163 hide: $('#post_excerpt').val() == '' 163 164 }); -
admin/js/_posts_actions.js
r1419 r1638 1 1 $(function() { 2 $('#new_auth_id').autocomplete(usersList, 2 $('#new_auth_id').autocomplete(usersList, 3 3 { 4 4 delay: 1000, … … 6 6 matchContains: true 7 7 }); 8 $('#new_cat').toggleWithLegend( 9 $('#new_cat').parent().children().not('#new_cat'),10 {} // no cookie on new category as we don't use this every day11 );8 $('#new_cat').toggleWithLegend($('#new_cat').parent().children().not('#new_cat'), { 9 // no cookie on new category as we don't use this every day 10 legend_click: true 11 }); 12 12 });
Note: See TracChangeset
for help on using the changeset viewer.