Changeset 1806:6a0391e85f73 for admin/js
- Timestamp:
- 09/13/13 11:38:14 (12 years ago)
- Branch:
- actionsreloaded
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_posts_actions.js
r1638 r1806 1 1 $(function() { 2 $('#new_auth_id').autocomplete(usersList, 3 { 4 delay: 1000, 5 matchSubset: true, 6 matchContains: true 7 }); 2 new_auth_id = $('#new_auth_id'); 3 if (new_auth_id.length) { 4 new_auth_id.autocomplete(usersList, 5 { 6 delay: 1000, 7 matchSubset: true, 8 matchContains: true 9 }); 10 } 8 11 $('#new_cat').toggleWithLegend($('#new_cat').parent().children().not('#new_cat'), { 9 12 // no cookie on new category as we don't use this every day
Note: See TracChangeset
for help on using the changeset viewer.