├── .gitignore ├── Cakefile ├── LICENSE ├── README.md ├── bower.json ├── index.js ├── lib ├── locales │ ├── timeago.da.js │ ├── timeago.de.js │ ├── timeago.en.js │ ├── timeago.es.js │ ├── timeago.fr.js │ ├── timeago.ja.js │ ├── timeago.pt-br.js │ └── timeago.zh-cn.js └── timeago.js ├── package.json ├── src ├── locales │ ├── timeago.da.coffee │ ├── timeago.de.coffee │ ├── timeago.en.coffee │ ├── timeago.es.coffee │ ├── timeago.fr.coffee │ ├── timeago.ja.coffee │ ├── timeago.pt-br.coffee │ └── timeago.zh-cn.coffee └── timeago.coffee └── test ├── index.html ├── lib ├── jasmine-html.js ├── jasmine.css ├── jasmine.js └── jquery.js └── specs └── timeago_spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/bower.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/timeago'); 2 | -------------------------------------------------------------------------------- /lib/locales/timeago.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.da.js -------------------------------------------------------------------------------- /lib/locales/timeago.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.de.js -------------------------------------------------------------------------------- /lib/locales/timeago.en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.en.js -------------------------------------------------------------------------------- /lib/locales/timeago.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.es.js -------------------------------------------------------------------------------- /lib/locales/timeago.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.fr.js -------------------------------------------------------------------------------- /lib/locales/timeago.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.ja.js -------------------------------------------------------------------------------- /lib/locales/timeago.pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.pt-br.js -------------------------------------------------------------------------------- /lib/locales/timeago.zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/locales/timeago.zh-cn.js -------------------------------------------------------------------------------- /lib/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/lib/timeago.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/package.json -------------------------------------------------------------------------------- /src/locales/timeago.da.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.da.coffee -------------------------------------------------------------------------------- /src/locales/timeago.de.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.de.coffee -------------------------------------------------------------------------------- /src/locales/timeago.en.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.en.coffee -------------------------------------------------------------------------------- /src/locales/timeago.es.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.es.coffee -------------------------------------------------------------------------------- /src/locales/timeago.fr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.fr.coffee -------------------------------------------------------------------------------- /src/locales/timeago.ja.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.ja.coffee -------------------------------------------------------------------------------- /src/locales/timeago.pt-br.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.pt-br.coffee -------------------------------------------------------------------------------- /src/locales/timeago.zh-cn.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/locales/timeago.zh-cn.coffee -------------------------------------------------------------------------------- /src/timeago.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/src/timeago.coffee -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/index.html -------------------------------------------------------------------------------- /test/lib/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/lib/jasmine-html.js -------------------------------------------------------------------------------- /test/lib/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/lib/jasmine.css -------------------------------------------------------------------------------- /test/lib/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/lib/jasmine.js -------------------------------------------------------------------------------- /test/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/lib/jquery.js -------------------------------------------------------------------------------- /test/specs/timeago_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pragmaticly/smart-time-ago/HEAD/test/specs/timeago_spec.js --------------------------------------------------------------------------------