Skip to content

Instantly share code, notes, and snippets.

@tstone
Last active December 25, 2015 22:28
Show Gist options
  • Save tstone/7049448 to your computer and use it in GitHub Desktop.
Save tstone/7049448 to your computer and use it in GitHub Desktop.
AC/Design Checklist

Titles/Text

  • How is overflow handled?
  • What is the behavior if the text/title is empty?

Links

  • Where does it go?

Images

  • When the source data includes multiple, which image should be picked?
  • For fixed-size images, should they be cropped or "letterbox"?
  • What is the alt text?
  • Will the image be large and need some sort of resizing/minification?
  • For lists of thumbnails that paginate, will it require lazy loading?
  • What is the behavior when there is no image in the source data?

Lists

  • What is the order?
  • Are all items shown or should there be pagination?
  • Are additional items (when paginating) lazy loading?
  • What is the behavior if the list is empty?

UI Elements

  • What does every button do?
  • What is the hover behavior?
  • Are there tooltips?
  • Are there animations?

Widget

  • Does the widget appear on every page or just some?
  • Does the widget need to change for tablet/mobile?
  • Are there any conditions when this widget shouldn't appear?
  • Does it require special tracking or analytics pixels?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment