├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.coffee ├── README.md ├── bower.json ├── dist ├── angularpersian.js └── angularpersian.min.js ├── example └── filters.html ├── package.json ├── src ├── filters.coffee ├── fn │ ├── arabic-char.coffee │ ├── arabic-number.coffee │ ├── digit-words.coffee │ ├── fix-url.coffee │ ├── number.coffee │ └── switch-key.coffee └── module.coffee └── test ├── all.js └── angular-persian-test.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .idea 4 | test/results 5 | .tmp 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angularpersian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/dist/angularpersian.js -------------------------------------------------------------------------------- /dist/angularpersian.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/dist/angularpersian.min.js -------------------------------------------------------------------------------- /example/filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/example/filters.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/package.json -------------------------------------------------------------------------------- /src/filters.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/filters.coffee -------------------------------------------------------------------------------- /src/fn/arabic-char.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/arabic-char.coffee -------------------------------------------------------------------------------- /src/fn/arabic-number.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/arabic-number.coffee -------------------------------------------------------------------------------- /src/fn/digit-words.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/digit-words.coffee -------------------------------------------------------------------------------- /src/fn/fix-url.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/fix-url.coffee -------------------------------------------------------------------------------- /src/fn/number.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/number.coffee -------------------------------------------------------------------------------- /src/fn/switch-key.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/fn/switch-key.coffee -------------------------------------------------------------------------------- /src/module.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/src/module.coffee -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/test/all.js -------------------------------------------------------------------------------- /test/angular-persian-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/angular-persian/HEAD/test/angular-persian-test.html --------------------------------------------------------------------------------