Skip to content

Commit ffeeaac

Browse files
committed
length validation of category description
1 parent dc0447e commit ffeeaac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

BlogEngine/BlogEngine.NET/admin/app/content/categories/categoryController.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080
bindCommon();
8181
$('#form').validate({
8282
rules: {
83-
txtSlug: { required: true }
83+
txtSlug: { required: true },
84+
txtExcerpt: { maxlength: 200 }
8485
}
8586
});
8687
});

0 commit comments

Comments
 (0)