├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo ├── demo.response.json ├── index.htm ├── jquery.profanityfilter.js ├── mit-license.html ├── styles.css └── swearWords.json ├── jquery.profanityfilter.js ├── jquery.profanityfilter.min.js ├── localResources ├── de.json ├── en.json ├── es.json ├── fr.json ├── it.json ├── nl.json ├── pt.json └── ru.json ├── package.json └── swearWords.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/bower.json -------------------------------------------------------------------------------- /demo/demo.response.json: -------------------------------------------------------------------------------- 1 | ["shit"] 2 | -------------------------------------------------------------------------------- /demo/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/demo/index.htm -------------------------------------------------------------------------------- /demo/jquery.profanityfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/demo/jquery.profanityfilter.js -------------------------------------------------------------------------------- /demo/mit-license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/demo/mit-license.html -------------------------------------------------------------------------------- /demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/demo/styles.css -------------------------------------------------------------------------------- /demo/swearWords.json: -------------------------------------------------------------------------------- 1 | ["shit"] -------------------------------------------------------------------------------- /jquery.profanityfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/jquery.profanityfilter.js -------------------------------------------------------------------------------- /jquery.profanityfilter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/jquery.profanityfilter.min.js -------------------------------------------------------------------------------- /localResources/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/de.json -------------------------------------------------------------------------------- /localResources/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/en.json -------------------------------------------------------------------------------- /localResources/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/es.json -------------------------------------------------------------------------------- /localResources/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/fr.json -------------------------------------------------------------------------------- /localResources/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/it.json -------------------------------------------------------------------------------- /localResources/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/nl.json -------------------------------------------------------------------------------- /localResources/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/pt.json -------------------------------------------------------------------------------- /localResources/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/localResources/ru.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/package.json -------------------------------------------------------------------------------- /swearWords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaseFlorell/jQuery.ProfanityFilter/HEAD/swearWords.json --------------------------------------------------------------------------------