Skip to content

Commit

Permalink
add properties to prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 6, 2012
1 parent 4ecfdc0 commit eea50e6
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,78 @@ var rework = require('rework')
, bytes = require('bytes')
, fs = require('fs');

/**
* Prefixed properties.
*/

var props = [
'animation',
'animation-delay',
'animation-direction',
'animation-duration',
'animation-fill-mode',
'animation-iteration-count',
'animation-name',
'animation-play-state',
'animation-timing-function',
'appearance',
'background-visibility',
'background-clip',
'background-composite',
'background-origin',
'background-size',
'blend-mode',
'border-bottom-left-radius',
'border-bottom-right-radius',
'border-fit',
'border-image',
'border-radius',
'border-top-left-radius',
'border-top-right-radius',
'border-vertical-spacing',
'box-align',
'box-direction',
'box-flex',
'box-flex-group',
'box-lines',
'box-ordinal-group',
'box-orient',
'box-pack',
'box-reflect',
'box-shadow',
'box-sizing',
'clip-path',
'flex',
'flex-basis',
'flex-direction',
'flex-flow',
'flex-grow',
'flex-shrink',
'flex-wrap',
'flex-flow-from',
'flex-flow-into',
'font-smoothing',
'transform',
'transform-origin',
'transform-origin-x',
'transform-origin-y',
'transform-origin-z',
'transform-style',
'transition',
'transition-delay',
'transition-duration',
'transition-property',
'transition-timing-function',
'user-drag',
'user-modify',
'user-select',
'wrap',
'wrap-flow',
'wrap-margin',
'wrap-padding',
'wrap-through'
];

/*
* GET home page.
*/
Expand Down

0 comments on commit eea50e6

Please sign in to comment.