Changeset 3706:170617361020 for admin/js/_trackbacks.js
- Timestamp:
- 02/16/18 16:01:59 (7 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_trackbacks.js
r2566 r3706 1 /*global $ */ 2 'use strict'; 3 1 4 $(function() { 2 3 4 this.value = this.value.substring(0,255);5 6 5 $('#tb_excerpt').keypress(function() { 6 if (this.value.length > 255) { 7 this.value = this.value.substring(0, 255); 8 } 9 }); 7 10 });
Note: See TracChangeset
for help on using the changeset viewer.