Guest User

Untitled

a guest
May 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. properties: {
  2. title: {
  3. type: 'string',
  4. maxLength: 140,
  5.  
  6. conditional: {
  7. optional: true,
  8. when: function () { // The 'optional' attribute only takes effect if this function returns true
  9. return !this.published; // So the title is only optional if the article hasn't been published.
  10. }
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment