├── .gitignore ├── Gruntfile.js ├── README.md ├── animate-colors.jquery.json ├── bower.json ├── closure-compiler └── build │ └── compiler.jar ├── jquery.animate-colors-min.js ├── jquery.animate-colors-min.js.gz ├── jquery.animate-colors.js ├── jquery.animate-colors.js.map ├── jquery └── jquery-1.8.0.min.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .svn/* 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/README.md -------------------------------------------------------------------------------- /animate-colors.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/animate-colors.jquery.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/bower.json -------------------------------------------------------------------------------- /closure-compiler/build/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/closure-compiler/build/compiler.jar -------------------------------------------------------------------------------- /jquery.animate-colors-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/jquery.animate-colors-min.js -------------------------------------------------------------------------------- /jquery.animate-colors-min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/jquery.animate-colors-min.js.gz -------------------------------------------------------------------------------- /jquery.animate-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/jquery.animate-colors.js -------------------------------------------------------------------------------- /jquery.animate-colors.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/jquery.animate-colors.js.map -------------------------------------------------------------------------------- /jquery/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/jquery/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/Color-animation-jQuery-plugin/HEAD/package.json --------------------------------------------------------------------------------