diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..aef6648
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,18 @@
+Please prefix your issue with one of the following: **[BUG]** **[PROPOSAL]** **[QUESTION]**.
+
+**In raising this issue, I confirm the following (please check boxes):**
+
+- [ ] I have read and understood the contributors guide.
+- [ ] I have checked that the bug-fix I am reporting can be replicated, or that the feature I am suggesting isn't already present.
+- [ ] I have checked the pull requests tab for existing solutions/implementations to my issue/suggestion.
+
+**My familiarity with the project is as follows (check one):**
+
+- [ ] I have never used the project.
+- [ ] I have used the project briefly.
+- [ ] I have used the project extensively, but have not contributed previously.
+- [ ] I am an active contributor to the project.
+
+---
+
+{issue content here}
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..192c0d1
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,20 @@
+Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**.
+
+**In raising this pull request, I confirm the following (please check boxes):**
+
+- [ ] I have read and understood the contributors guide.
+- [ ] I have checked that another pull request for this purpose does not exist.
+- [ ] I have considered, and confirmed that this submission will be valuable to others.
+- [ ] I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
+- [ ] I give this submission freely, and claim no ownership to its content.
+
+**My familiarity with the project is as follows (check one):**
+
+- [ ] I have never used the project.
+- [ ] I have used the project briefly.
+- [ ] I have used the project extensively, but have not contributed previously.
+- [ ] I am an active contributor to the project.
+
+---
+
+{pull request content here}
diff --git a/.gitignore b/.gitignore
index e69de29..0d20b64 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+*.pyc
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..6b29619
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+sudo: true
+
+language: python
+python:
+ - "3.3"
+
+# command to install dependencies
+#install: "pip install -r requirements.txt"
+# command to run tests
+script: python tests/test.py
diff --git a/Preferences.sublime-settings b/Preferences.sublime-settings
new file mode 100644
index 0000000..71ded4e
--- /dev/null
+++ b/Preferences.sublime-settings
@@ -0,0 +1,3 @@
+{
+ "word_separators": "/\\()\"'-:,;><~!@#$%^&*|+=[]{}`~?"
+}
diff --git a/README.md b/README.md
index f5310f5..37d5858 100644
--- a/README.md
+++ b/README.md
@@ -1,35 +1,66 @@
# Front-end Project Snippets
-[](https://github.com/brazilian-dev/sublime-front-end-snippets/blob/master/LICENSE.md)
-[](https://github.com/brazilian-dev/sublime-front-end-snippets/issues)
+[](http://hemersonvianna.mit-license.org/)
+[](https://github.com/w3dotdev/sublime-front-end-snippets/issues)
+
+
+
+
+[](https://travis-ci.org/w3dotdev/sublime-front-end-snippets)
+[](https://packagecontrol.io/packages/Front-end%20Project%20Snippets)
+
+
+
+## Translations
+
+* [Portuguese - Brazil](translations/pt_BR)
## Install
-If you already have the [Package Control](http://wbond.net/sublime_packages/package_control) installed , just search for ***Front-end Project Snippets***. If you have not installed in the sublime, you can do it [here](http://wbond.net/sublime_packages/package_control/installation).
+If you already have the [Package Control](http://wbond.net/sublime_packages/package_control) installed , just search for `Front-end Project Snippets`. If you have not installed in the Sublime, you can do it [here](http://wbond.net/sublime_packages/package_control/installation).
-You can manually download the package and place it within your `Packages` directory. It will work, but will not be updated automatically.
+You can manually download the package and place it within your `Packages` directory. It will work, but it will not be automatically updated.
-You can see all installed snippets in `Tools > Snippets...`, in the sublime text.
+You can see all installed snippets in `Tools > Snippets...`, in the Sublime Text.
+
+[Tested on windows] When the "."(dot) is used, the autocomplete disappears.. Solve this problem, just put in your user `Preferences > Settings - User`, the property `word_separators` with value without the "."(dot). You can see an example [here](Preferences.sublime-settings).
## Snippets and prefixes/keys
-- [HTML - h*](snippets/html/)
+- [HTML - h.*](snippets/html/)
- [Microdata - hm.*](snippets/html/schema/microdata)
-- [CSS - c*](snippets/css/)
-- [JavaScript - j*](snippets/js/vanilla)
- - [BDD - b*](snippets/js/bdd)
- - [jQuery - jq*](snippets/js/jquery)
-- Schema.org
- - [Microdata](snippets/schema/microdata)
-- [External - e*](snippets/external/)
+ - [WAI-ARIA - hw.*](snippets/html/wai-aria)
+- [CSS - c.*](snippets/css/)
+- [JavaScript - j.*](snippets/js/vanilla)
+ - [EcmaScript 2015 - je.*](snippets/js/es6/)
+ - [Libraries](snippets/js/libraries)
+ - [jQuery - jq.*](snippets/js/libraries/jquery)
+ - [React - jr.*](snippets/js/libraries/react)
+ - [Patterns](snippets/js/patterns)
+ - [Design Patterns - jdp.*](snippets/js/patterns/design-patterns)
+ - [UMD - jumd.*](snippets/js/patterns/umd)
+ - [Tests](snippets/js/tests)
+ - [Common - t.*](snippets/js/tests/common)
+ - [Chai - tc.*](snippets/js/tests/chai)
+ - [Jasmine - tj.*](snippets/js/tests/jasmine)
+ - [Mocha - tm.*](snippets/js/tests/mocha)
+ - [Node - tn.*](snippets/js/tests/node)
+ - [QUnit - tq.*](snippets/js/tests/qunit)
+ - [Sinon - ts.*](snippets/js/tests/sinon)
+- [Regex](snippets/regex/)
+- [Schema.org](snippets/schema)
+ - [JSON-LD - sj.*](snippets/schema/json-ld)
+ - [Microdata - sm.*](snippets/schema/microdata)
+ - [RDFa - sr.*](snippets/schema/rdfa)
+- [External - e.*](snippets/external/)
- [Comment](snippets/comment/)
- - [HTML - xh*](snippets/comment/html)
- - [CSS - xc*](snippets/comment/css)
- - [JavaScript - xj*](snippets/comment/js)
+ - [HTML - hc.*](snippets/comment/html)
+ - [CSS - cc.*](snippets/comment/css)
+ - [JavaScript - jc.*](snippets/comment/js)
- [Structure data](snippets/structured-data) (***examples***)
- - [Microdata - zmicrodata](snippets/structured-data/microdata)
- - [JSON-LD - zjsonld](snippets/structured-data/json-ld)
- - [RDFa - zrdfa](snippets/structured-data/rdfa)
+ - [Microdata - z.microdata](snippets/structured-data/microdata)
+ - [JSON-LD - z.jsonld](snippets/structured-data/json-ld)
+ - [RDFa - z.rdfa](snippets/structured-data/rdfa)
## References
@@ -39,10 +70,16 @@ You can see all installed snippets in `Tools > Snippets...`, in the sublime text
[https://github.com/zenorocha/sublime-javascript-snippets](https://github.com/zenorocha/sublime-javascript-snippets)
* [@joshnh](https://github.com/joshnh) (Joshua Hibbert)
[https://github.com/joshnh/CSS-Snippets](https://github.com/joshnh/CSS-Snippets)
-* [@joshnh](https://github.com/joshnh) (Joshua Hibbert)
- [https://github.com/joshnh/HTML-Snippets](https://github.com/joshnh/HTML-Snippets)
-* [http://schema.org/](http://schema.org/)
-* [https://api.jquery.com/](https://api.jquery.com/)
+* (Schema.org) [http://schema.org/](http://schema.org/)
+* (jQuery) [https://api.jquery.com/](https://api.jquery.com/)
+* (jQuery Boilerplate)[https://jqueryboilerplate.com/](https://jqueryboilerplate.com/)
+* (JSDuck) [https://github.com/senchalabs/jsduck](https://github.com/senchalabs/jsduck)
+* (idiomatic CSS) [https://github.com/necolas/idiomatic-css](https://github.com/necolas/idiomatic-css)
+* (JS Design Patterns) [https://addyosmani.com/resources/essentialjsdesignpatterns/book/](https://addyosmani.com/resources/essentialjsdesignpatterns/book/)
+* (Node.js Assert) [https://nodejs.org/api/assert.html](https://nodejs.org/api/assert.html)
+* (Jasmine) [http://jasmine.github.io/2.0/introduction.html](http://jasmine.github.io/2.0/introduction.html)
+* (ReactJS cheatsheet) [http://reactcheatsheet.com/](http://reactcheatsheet.com/)
+* (ES6 Features) [https://github.com/lukehoban/es6features#readme](https://github.com/lukehoban/es6features#readme)
## Contributing
@@ -54,7 +91,7 @@ You can see all installed snippets in `Tools > Snippets...`, in the sublime text
## Log
-Check [Releases](https://github.com/brazilian-dev/sublime-front-end-snippets/releases) for detailed changelog.
+Check [Releases](https://github.com/w3dotdev/sublime-front-end-snippets/releases) for detailed changelog.
## License
diff --git a/messages/install.txt b/messages/install.txt
index a489447..6dc8f1a 100644
--- a/messages/install.txt
+++ b/messages/install.txt
@@ -3,26 +3,6 @@ Front-end Project Snippets
You can see all installed snippets in Tools > Snippets... .
-Snippets:
-- HTML
- - Microdata
-- CSS
-- JavaScript
- - BDD
- - jQuery
-- Schema.org
- - Microdata
-- External
-- Comment
- - HTML
- - CSS
- - JavaScript
-- Structure data (examples)
- - Microdata
- - JSON-LD
- - RDFa
-
-
To find out more checkout the readme at https://github.com/brazilian-dev/sublime-front-end-snippets
Report issues at https://github.com/brazilian-dev/sublime-front-end-snippets/issues
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..e69de29
diff --git a/snippets.json b/snippets.json
new file mode 100644
index 0000000..a103015
--- /dev/null
+++ b/snippets.json
@@ -0,0 +1,3222 @@
+[
+ {
+ "description": "cc - Basic Comment",
+ "id": 1,
+ "trigger": "cc.basic"
+ },
+ {
+ "description": "cc - Block Comment",
+ "id": 2,
+ "trigger": "cc.block"
+ },
+ {
+ "description": "cc - Section Comment",
+ "id": 3,
+ "trigger": "cc.section"
+ },
+ {
+ "description": "cc - Sub-section Comment",
+ "id": 4,
+ "trigger": "cc.subsection"
+ },
+ {
+ "description": "hc - Basic Comment",
+ "id": 5,
+ "trigger": "hc.basic"
+ },
+ {
+ "description": "hc - Block Comment",
+ "id": 6,
+ "trigger": "hc.block"
+ },
+ {
+ "description": "hc - Conditional Comment",
+ "id": 7,
+ "trigger": "hc.cond"
+ },
+ {
+ "description": "hc - End Tag Comment",
+ "id": 8,
+ "trigger": "hc.end"
+ },
+ {
+ "description": "jc - Block Comment",
+ "id": 9,
+ "trigger": "jc.block"
+ },
+ {
+ "description": "jc - Class Comment",
+ "id": 10,
+ "trigger": "jc.class"
+ },
+ {
+ "description": "jc - Constructor Comment",
+ "id": 11,
+ "trigger": "jc.constructor"
+ },
+ {
+ "description": "jc - Event Comment",
+ "id": 12,
+ "trigger": "jc.event"
+ },
+ {
+ "description": "jc - Method Comment",
+ "id": 13,
+ "trigger": "jc.method"
+ },
+ {
+ "description": "jc - Property Comment",
+ "id": 14,
+ "trigger": "jc.property"
+ },
+ {
+ "description": "c - @font-face structure",
+ "id": 15,
+ "trigger": "c.ff"
+ },
+ {
+ "description": "c - Keyframes",
+ "id": 16,
+ "trigger": "c.k"
+ },
+ {
+ "description": "c - Media Querie",
+ "id": 17,
+ "trigger": "c.mq"
+ },
+ {
+ "description": "e - Google Analytics",
+ "id": 18,
+ "trigger": "e.ga"
+ },
+ {
+ "description": "e - Google Tag Manager",
+ "id": 19,
+ "trigger": "e.gtm"
+ },
+ {
+ "description": "h - Basic HTML document",
+ "id": 20,
+ "trigger": "h.b"
+ },
+ {
+ "description": "h - HTML document",
+ "id": 21,
+ "trigger": "h.doc"
+ },
+ {
+ "description": "h - Head tags",
+ "id": 22,
+ "trigger": "h.htags"
+ },
+ {
+ "description": "hm - HTML with SiteNavigationElement",
+ "id": 23,
+ "trigger": "hm.sitenav"
+ },
+ {
+ "description": "hw - Alert Dialog",
+ "id": 24,
+ "trigger": "hw.alertdialog"
+ },
+ {
+ "description": "je - ES6 Arrow Function",
+ "id": 25,
+ "trigger": "je.arrow"
+ },
+ {
+ "description": "je - ES6 Class",
+ "id": 26,
+ "trigger": "je.class"
+ },
+ {
+ "description": "je - ES6 Map",
+ "id": 27,
+ "trigger": "je.map"
+ },
+ {
+ "description": "je - ES6 Set",
+ "id": 28,
+ "trigger": "je.set"
+ },
+ {
+ "description": "je - ES6 WeakMap",
+ "id": 29,
+ "trigger": "je.wmap"
+ },
+ {
+ "description": "je - ES6 WeakSet",
+ "id": 30,
+ "trigger": "je.wset"
+ },
+ {
+ "description": "je - ES6 Object Literal",
+ "id": 31,
+ "trigger": "je.object"
+ },
+ {
+ "description": "je - ES6 Generators",
+ "id": 32,
+ "trigger": "je.generators"
+ },
+ {
+ "description": "je - ES6 For Loop Iterator using Let",
+ "id": 33,
+ "trigger": "je.leti"
+ },
+ {
+ "description": "je - ES6 Let",
+ "id": 34,
+ "trigger": "je.let"
+ },
+ {
+ "description": "je - Math",
+ "id": 35,
+ "trigger": "je.z.math"
+ },
+ {
+ "description": "je - ES6 Dynamic Module Import",
+ "id": 36,
+ "trigger": "je.simport"
+ },
+ {
+ "description": "je - ES6 Module Export Function",
+ "id": 37,
+ "trigger": "je.efunction"
+ },
+ {
+ "description": "je - ES6 Module Export Variable",
+ "id": 38,
+ "trigger": "je.evariable"
+ },
+ {
+ "description": "je - ES6 Module Import",
+ "id": 39,
+ "trigger": "je.import"
+ },
+ {
+ "description": "je - ES6 Loader Class",
+ "id": 40,
+ "trigger": "je.loader"
+ },
+ {
+ "description": "je - ES6 System Get Module",
+ "id": 41,
+ "trigger": "je.sget"
+ },
+ {
+ "description": "je - ES6 System Set Module",
+ "id": 42,
+ "trigger": "je.sset"
+ },
+ {
+ "description": "je - ES6 Promise",
+ "id": 43,
+ "trigger": "je.promise"
+ },
+ {
+ "description": "je - ES6 Proxy",
+ "id": 44,
+ "trigger": "je.proxy"
+ },
+ {
+ "description": "je - ES6 Reflect Apply",
+ "id": 45,
+ "trigger": "je.rapply"
+ },
+ {
+ "description": "je - ES6 Reflect Construct",
+ "id": 46,
+ "trigger": "je.rconstruct"
+ },
+ {
+ "description": "je - ES6 Reflect Define Property",
+ "id": 47,
+ "trigger": "je.rdproperty"
+ },
+ {
+ "description": "je - ES6 Reflect Delete Property",
+ "id": 48,
+ "trigger": "je.rdelproperty"
+ },
+ {
+ "description": "je - ES6 Reflect Enumerate",
+ "id": 49,
+ "trigger": "je.renumerate"
+ },
+ {
+ "description": "je - ES6 Reflect Get",
+ "id": 50,
+ "trigger": "je.rget"
+ },
+ {
+ "description": "je - ES6 Reflect Get Property Descriptor",
+ "id": 51,
+ "trigger": "je.rgopdescriptor"
+ },
+ {
+ "description": "je - ES6 Reflect Get Prototype Of",
+ "id": 52,
+ "trigger": "je.rgprototypeof"
+ },
+ {
+ "description": "je - ES6 Reflect Has",
+ "id": 53,
+ "trigger": "je.rhas"
+ },
+ {
+ "description": "je - ES6 Reflect Is Extensible",
+ "id": 54,
+ "trigger": "je.riextensible"
+ },
+ {
+ "description": "je - ES6 Reflect Own Keys",
+ "id": 55,
+ "trigger": "je.rokeys"
+ },
+ {
+ "description": "je - ES6 Reflect Prevent Extensions",
+ "id": 56,
+ "trigger": "je.rpextensions"
+ },
+ {
+ "description": "je - ES6 Reflect Set",
+ "id": 57,
+ "trigger": "je.rset"
+ },
+ {
+ "description": "je - ES6 Reflect Set Prototype Of",
+ "id": 58,
+ "trigger": "je.rsprototypeof"
+ },
+ {
+ "description": "je - ES6 Template String",
+ "id": 59,
+ "trigger": "je.string"
+ },
+ {
+ "description": "jq - ajax",
+ "id": 60,
+ "trigger": "jq.a"
+ },
+ {
+ "description": "jq - ajaxComplete",
+ "id": 61,
+ "trigger": "jq.acomplete"
+ },
+ {
+ "description": "jq - ajaxError",
+ "id": 62,
+ "trigger": "jq.aerror"
+ },
+ {
+ "description": "jq - getJSON",
+ "id": 63,
+ "trigger": "jq.gjson"
+ },
+ {
+ "description": "jq - getScript",
+ "id": 64,
+ "trigger": "jq.gscript"
+ },
+ {
+ "description": "jq - jQuery get",
+ "id": 65,
+ "trigger": "jq.jget"
+ },
+ {
+ "description": "jq - load",
+ "id": 66,
+ "trigger": "jq.load"
+ },
+ {
+ "description": "jq - post",
+ "id": 67,
+ "trigger": "jq.post"
+ },
+ {
+ "description": "jq - ajaxPrefilter",
+ "id": 68,
+ "trigger": "jq.aprefilter"
+ },
+ {
+ "description": "jq - ajaxSend",
+ "id": 69,
+ "trigger": "jq.asend"
+ },
+ {
+ "description": "jq - ajaxSetup",
+ "id": 70,
+ "trigger": "jq.asetup"
+ },
+ {
+ "description": "jq - ajaxStart",
+ "id": 71,
+ "trigger": "jq.astart"
+ },
+ {
+ "description": "jq - ajaxStop",
+ "id": 72,
+ "trigger": "jq.astop"
+ },
+ {
+ "description": "jq - ajaxSuccess",
+ "id": 73,
+ "trigger": "jq.asuccess"
+ },
+ {
+ "description": "jq - ajaxTransport",
+ "id": 74,
+ "trigger": "jq.atransport"
+ },
+ {
+ "description": "jq - addClass",
+ "id": 75,
+ "trigger": "jq.addclass"
+ },
+ {
+ "description": "jq - attr",
+ "id": 76,
+ "trigger": "jq.attr"
+ },
+ {
+ "description": "jq - hasClass",
+ "id": 77,
+ "trigger": "jq.hasclass"
+ },
+ {
+ "description": "jq - html",
+ "id": 78,
+ "trigger": "jq.html"
+ },
+ {
+ "description": "jq - prop",
+ "id": 79,
+ "trigger": "jq.prop"
+ },
+ {
+ "description": "jq - removeAttr",
+ "id": 80,
+ "trigger": "jq.rattr"
+ },
+ {
+ "description": "jq - removeClass",
+ "id": 81,
+ "trigger": "jq.rclass"
+ },
+ {
+ "description": "jq - removeProp",
+ "id": 82,
+ "trigger": "jq.rprop"
+ },
+ {
+ "description": "jq - toggleClass",
+ "id": 83,
+ "trigger": "jq.tclass"
+ },
+ {
+ "description": "jq - add",
+ "id": 84,
+ "trigger": "jq.cbadd"
+ },
+ {
+ "description": "jq - disable",
+ "id": 85,
+ "trigger": "jq.cbdisable"
+ },
+ {
+ "description": "jq - disabled",
+ "id": 86,
+ "trigger": "jq.cbdisabled"
+ },
+ {
+ "description": "jq - empty",
+ "id": 87,
+ "trigger": "jq.cbempty"
+ },
+ {
+ "description": "jq - fireWith",
+ "id": 88,
+ "trigger": "jq.cbfirewith"
+ },
+ {
+ "description": "jq - fire",
+ "id": 89,
+ "trigger": "jq.cbfire"
+ },
+ {
+ "description": "jq - fired",
+ "id": 90,
+ "trigger": "jq.cbfired"
+ },
+ {
+ "description": "jq - has",
+ "id": 91,
+ "trigger": "jq.cbhas"
+ },
+ {
+ "description": "jq - lock",
+ "id": 92,
+ "trigger": "jq.cblock"
+ },
+ {
+ "description": "jq - locked",
+ "id": 93,
+ "trigger": "jq.cblocked"
+ },
+ {
+ "description": "jq - remove",
+ "id": 94,
+ "trigger": "jq.cbremove"
+ },
+ {
+ "description": "jq - callbacks",
+ "id": 95,
+ "trigger": "jq.cb"
+ },
+ {
+ "description": "jq - holdReady",
+ "id": 96,
+ "trigger": "jq.holdready"
+ },
+ {
+ "description": "jq - jQuery",
+ "id": 97,
+ "trigger": "jq.jq"
+ },
+ {
+ "description": "jq - noConflict",
+ "id": 98,
+ "trigger": "jq.noc"
+ },
+ {
+ "description": "jq - when",
+ "id": 99,
+ "trigger": "jq.when"
+ },
+ {
+ "description": "jq - cssHooks",
+ "id": 100,
+ "trigger": "jq.cssh"
+ },
+ {
+ "description": "jq - cssNumber",
+ "id": 101,
+ "trigger": "jq.cssn"
+ },
+ {
+ "description": "jq - css",
+ "id": 102,
+ "trigger": "jq.css"
+ },
+ {
+ "description": "jq - hasData",
+ "id": 103,
+ "trigger": "jq.hasdata"
+ },
+ {
+ "description": "jq - jQuery data",
+ "id": 104,
+ "trigger": "jq.jdata"
+ },
+ {
+ "description": "jq - jQuery removeData",
+ "id": 105,
+ "trigger": "jq.jrdata"
+ },
+ {
+ "description": "jq - removeData",
+ "id": 106,
+ "trigger": "jq.rdata"
+ },
+ {
+ "description": "jq - data",
+ "id": 107,
+ "trigger": "jq.data"
+ },
+ {
+ "description": "jq - always",
+ "id": 108,
+ "trigger": "jq.always"
+ },
+ {
+ "description": "jq - done",
+ "id": 109,
+ "trigger": "jq.done"
+ },
+ {
+ "description": "jq - fail",
+ "id": 110,
+ "trigger": "jq.fail"
+ },
+ {
+ "description": "jq - notifyWith",
+ "id": 111,
+ "trigger": "jq.notifywith"
+ },
+ {
+ "description": "jq - notify",
+ "id": 112,
+ "trigger": "jq.notify"
+ },
+ {
+ "description": "jq - progress",
+ "id": 113,
+ "trigger": "jq.progress"
+ },
+ {
+ "description": "jq - promise",
+ "id": 114,
+ "trigger": "jq.dpromise"
+ },
+ {
+ "description": "jq - rejectWith",
+ "id": 115,
+ "trigger": "jq.rejectwith"
+ },
+ {
+ "description": "jq - reject",
+ "id": 116,
+ "trigger": "jq.reject"
+ },
+ {
+ "description": "jq - resolveWith",
+ "id": 117,
+ "trigger": "jq.resolvewith"
+ },
+ {
+ "description": "jq - resolve",
+ "id": 118,
+ "trigger": "jq.resolve"
+ },
+ {
+ "description": "jq - state",
+ "id": 119,
+ "trigger": "jq.state"
+ },
+ {
+ "description": "jq - then",
+ "id": 120,
+ "trigger": "jq.then"
+ },
+ {
+ "description": "jq - deferred",
+ "id": 121,
+ "trigger": "jq.d"
+ },
+ {
+ "description": "jq - promise",
+ "id": 122,
+ "trigger": "jq.promise"
+ },
+ {
+ "description": "jq - height",
+ "id": 123,
+ "trigger": "jq.height"
+ },
+ {
+ "description": "jq - innerHeight",
+ "id": 124,
+ "trigger": "jq.iheight"
+ },
+ {
+ "description": "jq - innerWidth",
+ "id": 125,
+ "trigger": "jq.iwidth"
+ },
+ {
+ "description": "jq - outerHeight",
+ "id": 126,
+ "trigger": "jq.oheight"
+ },
+ {
+ "description": "jq - outerWidth",
+ "id": 127,
+ "trigger": "jq.owidth"
+ },
+ {
+ "description": "jq - width",
+ "id": 128,
+ "trigger": "jq.width"
+ },
+ {
+ "description": "jq - animate",
+ "id": 129,
+ "trigger": "jq.animate"
+ },
+ {
+ "description": "jq - clearQueue",
+ "id": 130,
+ "trigger": "jq.cqueue"
+ },
+ {
+ "description": "jq - delay",
+ "id": 131,
+ "trigger": "jq.delay"
+ },
+ {
+ "description": "jq - dequeue",
+ "id": 132,
+ "trigger": "jq.dequeue"
+ },
+ {
+ "description": "jq - fadeIn",
+ "id": 133,
+ "trigger": "jq.fadein"
+ },
+ {
+ "description": "jq - fadeOut",
+ "id": 134,
+ "trigger": "jq.fadeout"
+ },
+ {
+ "description": "jq - fadeToggle",
+ "id": 135,
+ "trigger": "jq.fadetoggle"
+ },
+ {
+ "description": "jq - fadeTo",
+ "id": 136,
+ "trigger": "jq.fadeto"
+ },
+ {
+ "description": "jq - finish",
+ "id": 137,
+ "trigger": "jq.finish"
+ },
+ {
+ "description": "jq - hide",
+ "id": 138,
+ "trigger": "jq.hide"
+ },
+ {
+ "description": "jq - queue",
+ "id": 139,
+ "trigger": "jq.queue"
+ },
+ {
+ "description": "jq - show",
+ "id": 140,
+ "trigger": "jq.show"
+ },
+ {
+ "description": "jq - slideDown",
+ "id": 141,
+ "trigger": "jq.sdown"
+ },
+ {
+ "description": "jq - slideToggle",
+ "id": 142,
+ "trigger": "jq.stoggle"
+ },
+ {
+ "description": "jq - slideUp",
+ "id": 143,
+ "trigger": "jq.sup"
+ },
+ {
+ "description": "jq - stop",
+ "id": 144,
+ "trigger": "jq.stop"
+ },
+ {
+ "description": "jq - toggle",
+ "id": 145,
+ "trigger": "jq.toggle"
+ },
+ {
+ "description": "jq - bind",
+ "id": 146,
+ "trigger": "jq.bind"
+ },
+ {
+ "description": "jq - click",
+ "id": 147,
+ "trigger": "jq.click"
+ },
+ {
+ "description": "jq - contextmenu",
+ "id": 148,
+ "trigger": "jq.jqcmenu"
+ },
+ {
+ "description": "jq - currentTarget",
+ "id": 149,
+ "trigger": "jq.ctarget"
+ },
+ {
+ "description": "jq - Event data",
+ "id": 150,
+ "trigger": "jq.edata"
+ },
+ {
+ "description": "jq - dblclick",
+ "id": 151,
+ "trigger": "jq.dclick"
+ },
+ {
+ "description": "jq - delegateTarget",
+ "id": 152,
+ "trigger": "jq.dtarget"
+ },
+ {
+ "description": "jq - delegate",
+ "id": 153,
+ "trigger": "jq.delegate"
+ },
+ {
+ "description": "jq - hover",
+ "id": 154,
+ "trigger": "jq.hover"
+ },
+ {
+ "description": "jq - isDefaultPrevented",
+ "id": 155,
+ "trigger": "jq.idprevented"
+ },
+ {
+ "description": "jq - isImmediatePropagationStopped",
+ "id": 156,
+ "trigger": "jq.iips"
+ },
+ {
+ "description": "jq - isPropagationStopped",
+ "id": 157,
+ "trigger": "jq.ips"
+ },
+ {
+ "description": "jq - keydown",
+ "id": 158,
+ "trigger": "jq.kdown"
+ },
+ {
+ "description": "jq - keypress",
+ "id": 159,
+ "trigger": "jq.kpress"
+ },
+ {
+ "description": "jq - keyup",
+ "id": 160,
+ "trigger": "jq.kup"
+ },
+ {
+ "description": "jq - metaKey",
+ "id": 161,
+ "trigger": "jq.mkey"
+ },
+ {
+ "description": "jq - mousedown",
+ "id": 162,
+ "trigger": "jq.mdown"
+ },
+ {
+ "description": "jq - mouseenter",
+ "id": 163,
+ "trigger": "jq.menter"
+ },
+ {
+ "description": "jq - mouseleave",
+ "id": 164,
+ "trigger": "jq.mleave"
+ },
+ {
+ "description": "jq - mousemove",
+ "id": 165,
+ "trigger": "jq.mmove"
+ },
+ {
+ "description": "jq - mouseout",
+ "id": 166,
+ "trigger": "jq.mout"
+ },
+ {
+ "description": "jq - mouseover",
+ "id": 167,
+ "trigger": "jq.mover"
+ },
+ {
+ "description": "jq - mouseup",
+ "id": 168,
+ "trigger": "jq.mup"
+ },
+ {
+ "description": "jq - namespace",
+ "id": 169,
+ "trigger": "jq.ns"
+ },
+ {
+ "description": "jq - off",
+ "id": 170,
+ "trigger": "jq.off"
+ },
+ {
+ "description": "jq - on",
+ "id": 171,
+ "trigger": "jq.on"
+ },
+ {
+ "description": "jq - one",
+ "id": 172,
+ "trigger": "jq.one"
+ },
+ {
+ "description": "jq - pageX",
+ "id": 173,
+ "trigger": "jq.px"
+ },
+ {
+ "description": "jq - pageY",
+ "id": 174,
+ "trigger": "jq.py"
+ },
+ {
+ "description": "jq - preventDefault",
+ "id": 175,
+ "trigger": "jq.pd"
+ },
+ {
+ "description": "jq - ready",
+ "id": 176,
+ "trigger": "jq.ready"
+ },
+ {
+ "description": "jq - relatedTarget",
+ "id": 177,
+ "trigger": "jq.rtarget"
+ },
+ {
+ "description": "jq - resize",
+ "id": 178,
+ "trigger": "jq.resize"
+ },
+ {
+ "description": "jq - result",
+ "id": 179,
+ "trigger": "jq.result"
+ },
+ {
+ "description": "jq - scroll",
+ "id": 180,
+ "trigger": "jq.scroll"
+ },
+ {
+ "description": "jq - stopImmediatePropagation",
+ "id": 181,
+ "trigger": "jq.sip"
+ },
+ {
+ "description": "jq - stopPropagation",
+ "id": 182,
+ "trigger": "jq.sp"
+ },
+ {
+ "description": "jq - target",
+ "id": 183,
+ "trigger": "jq.target"
+ },
+ {
+ "description": "jq - timeStamp",
+ "id": 184,
+ "trigger": "jq.tstamp"
+ },
+ {
+ "description": "jq - triggerHandler",
+ "id": 185,
+ "trigger": "jq.thandler"
+ },
+ {
+ "description": "jq - trigger",
+ "id": 186,
+ "trigger": "jq.trigger"
+ },
+ {
+ "description": "jq - type",
+ "id": 187,
+ "trigger": "jq.type"
+ },
+ {
+ "description": "jq - unbind",
+ "id": 188,
+ "trigger": "jq.unbind"
+ },
+ {
+ "description": "jq - undelegate",
+ "id": 189,
+ "trigger": "jq.undelegate"
+ },
+ {
+ "description": "jq - which",
+ "id": 190,
+ "trigger": "jq.which"
+ },
+ {
+ "description": "jq - blur",
+ "id": 191,
+ "trigger": "jq.blur"
+ },
+ {
+ "description": "jq - change",
+ "id": 192,
+ "trigger": "jq.change"
+ },
+ {
+ "description": "jq - focusin",
+ "id": 193,
+ "trigger": "jq.focusin"
+ },
+ {
+ "description": "jq - focusout",
+ "id": 194,
+ "trigger": "jq.focusout"
+ },
+ {
+ "description": "jq - focus",
+ "id": 195,
+ "trigger": "jq.focus"
+ },
+ {
+ "description": "jq - param",
+ "id": 196,
+ "trigger": "jq.param"
+ },
+ {
+ "description": "jq - select",
+ "id": 197,
+ "trigger": "jq.select"
+ },
+ {
+ "description": "jq - serializeArray",
+ "id": 198,
+ "trigger": "jq.serarray"
+ },
+ {
+ "description": "jq - serialize",
+ "id": 199,
+ "trigger": "jq.ser"
+ },
+ {
+ "description": "jq - submit",
+ "id": 200,
+ "trigger": "jq.submit"
+ },
+ {
+ "description": "jq - val",
+ "id": 201,
+ "trigger": "jq.val"
+ },
+ {
+ "description": "jq - error",
+ "id": 202,
+ "trigger": "jq.error"
+ },
+ {
+ "description": "jq - pushStack",
+ "id": 203,
+ "trigger": "jq.pstack"
+ },
+ {
+ "description": "jq - after",
+ "id": 204,
+ "trigger": "jq.after"
+ },
+ {
+ "description": "jq - appendTo",
+ "id": 205,
+ "trigger": "jq.appendto"
+ },
+ {
+ "description": "jq - append",
+ "id": 206,
+ "trigger": "jq.append"
+ },
+ {
+ "description": "jq - before",
+ "id": 207,
+ "trigger": "jq.before"
+ },
+ {
+ "description": "jq - clone",
+ "id": 208,
+ "trigger": "jq.clone"
+ },
+ {
+ "description": "jq - detach",
+ "id": 209,
+ "trigger": "jq.detach"
+ },
+ {
+ "description": "jq - empty",
+ "id": 210,
+ "trigger": "jq.empty"
+ },
+ {
+ "description": "jq - insertAfter",
+ "id": 211,
+ "trigger": "jq.iafter"
+ },
+ {
+ "description": "jq - insertBefore",
+ "id": 212,
+ "trigger": "jq.ibefore"
+ },
+ {
+ "description": "jq - prependTo",
+ "id": 213,
+ "trigger": "jq.prependto"
+ },
+ {
+ "description": "jq - prepend",
+ "id": 214,
+ "trigger": "jq.prepend"
+ },
+ {
+ "description": "jq - remove",
+ "id": 215,
+ "trigger": "jq.remove"
+ },
+ {
+ "description": "jq - replaceAll",
+ "id": 216,
+ "trigger": "jq.replaceall"
+ },
+ {
+ "description": "jq - replaceWith",
+ "id": 217,
+ "trigger": "jq.replacewith"
+ },
+ {
+ "description": "jq - text",
+ "id": 218,
+ "trigger": "jq.text"
+ },
+ {
+ "description": "jq - unwrap",
+ "id": 219,
+ "trigger": "jq.unwrap"
+ },
+ {
+ "description": "jq - wrapAll",
+ "id": 220,
+ "trigger": "jq.wall"
+ },
+ {
+ "description": "jq - wrapInner",
+ "id": 221,
+ "trigger": "jq.winner"
+ },
+ {
+ "description": "jq - wrap",
+ "id": 222,
+ "trigger": "jq.wrap"
+ },
+ {
+ "description": "jq - get",
+ "id": 223,
+ "trigger": "jq.get"
+ },
+ {
+ "description": "jq - index",
+ "id": 224,
+ "trigger": "jq.index"
+ },
+ {
+ "description": "jq - toArray",
+ "id": 225,
+ "trigger": "jq.toarray"
+ },
+ {
+ "description": "jq - offsetParent",
+ "id": 226,
+ "trigger": "jq.oparent"
+ },
+ {
+ "description": "jq - position",
+ "id": 227,
+ "trigger": "jq.pos"
+ },
+ {
+ "description": "jq - scrollLeft",
+ "id": 228,
+ "trigger": "jq.scleft"
+ },
+ {
+ "description": "jq - scrollTop",
+ "id": 229,
+ "trigger": "jq.sctop"
+ },
+ {
+ "description": "jq - offset",
+ "id": 230,
+ "trigger": "jq.oset"
+ },
+ {
+ "description": "jq - fx.interval",
+ "id": 231,
+ "trigger": "jq.fxi"
+ },
+ {
+ "description": "jq - fx.off",
+ "id": 232,
+ "trigger": "jq.fxo"
+ },
+ {
+ "description": "jq - jquery",
+ "id": 233,
+ "trigger": "jq.jprop"
+ },
+ {
+ "description": "jq - length",
+ "id": 234,
+ "trigger": "jq.len"
+ },
+ {
+ "description": "jq - all",
+ "id": 235,
+ "trigger": "jq.all"
+ },
+ {
+ "description": "jq - :animated",
+ "id": 236,
+ "trigger": "jq.:a"
+ },
+ {
+ "description": "jq - Attribute Contains Prefix",
+ "id": 237,
+ "trigger": "jq.[]|"
+ },
+ {
+ "description": "jq - Attribute Contains",
+ "id": 238,
+ "trigger": "jq.[]*"
+ },
+ {
+ "description": "jq - Attribute Contains Word",
+ "id": 239,
+ "trigger": "jq.[]~"
+ },
+ {
+ "description": "jq - Attribute Ends With",
+ "id": 240,
+ "trigger": "jq.[]$"
+ },
+ {
+ "description": "jq - Attribute Equals",
+ "id": 241,
+ "trigger": "jq.[]="
+ },
+ {
+ "description": "jq - Attribute Not Equal",
+ "id": 242,
+ "trigger": "jq.[]!"
+ },
+ {
+ "description": "jq - Attribute Starts With",
+ "id": 243,
+ "trigger": "jq.[]^"
+ },
+ {
+ "description": "jq - :button",
+ "id": 244,
+ "trigger": "jq.:b"
+ },
+ {
+ "description": "jq - :checkbox",
+ "id": 245,
+ "trigger": "jq.:c"
+ },
+ {
+ "description": "jq - :checked",
+ "id": 246,
+ "trigger": "jq.:ch"
+ },
+ {
+ "description": "jq - :child",
+ "id": 247,
+ "trigger": "jq.:chi"
+ },
+ {
+ "description": "jq - class",
+ "id": 248,
+ "trigger": "jq.:cl"
+ },
+ {
+ "description": "jq - :contains",
+ "id": 249,
+ "trigger": "jq.:co"
+ },
+ {
+ "description": "jq - descendant",
+ "id": 250,
+ "trigger": "jq.des"
+ },
+ {
+ "description": "jq - :disabled",
+ "id": 251,
+ "trigger": "jq.:d"
+ },
+ {
+ "description": "jq - element",
+ "id": 252,
+ "trigger": "jq.$"
+ },
+ {
+ "description": "jq - :empty",
+ "id": 253,
+ "trigger": "jq.:e"
+ },
+ {
+ "description": "jq - :enabled",
+ "id": 254,
+ "trigger": "jq.:en"
+ },
+ {
+ "description": "jq - :eq",
+ "id": 255,
+ "trigger": "jq.:eq"
+ },
+ {
+ "description": "jq - :even",
+ "id": 256,
+ "trigger": "jq.:ev"
+ },
+ {
+ "description": "jq - :file",
+ "id": 257,
+ "trigger": "jq.:f"
+ },
+ {
+ "description": "jq - :first-child",
+ "id": 258,
+ "trigger": "jq.:fc"
+ },
+ {
+ "description": "jq - :first-of-type",
+ "id": 259,
+ "trigger": "jq.:ft"
+ },
+ {
+ "description": "jq - :first",
+ "id": 260,
+ "trigger": "jq.:fi"
+ },
+ {
+ "description": "jq - :focus",
+ "id": 261,
+ "trigger": "jq.:fo"
+ },
+ {
+ "description": "jq - :gt",
+ "id": 262,
+ "trigger": "jq.:gt"
+ },
+ {
+ "description": "jq - Has Attribute",
+ "id": 263,
+ "trigger": "jq.[]"
+ },
+ {
+ "description": "jq - :has",
+ "id": 264,
+ "trigger": "jq.:h"
+ },
+ {
+ "description": "jq - :header",
+ "id": 265,
+ "trigger": "jq.:he"
+ },
+ {
+ "description": "jq - :hidden",
+ "id": 266,
+ "trigger": "jq.:hi"
+ },
+ {
+ "description": "jq - id",
+ "id": 267,
+ "trigger": "jq.id"
+ },
+ {
+ "description": "jq - :image",
+ "id": 268,
+ "trigger": "jq.:i"
+ },
+ {
+ "description": "jq - :input",
+ "id": 269,
+ "trigger": "jq.:in"
+ },
+ {
+ "description": "jq - :lang",
+ "id": 270,
+ "trigger": "jq.:l"
+ },
+ {
+ "description": "jq - :last-child",
+ "id": 271,
+ "trigger": "jq.:lc"
+ },
+ {
+ "description": "jq - :last-of-type",
+ "id": 272,
+ "trigger": "jq.:lty"
+ },
+ {
+ "description": "jq - :last",
+ "id": 273,
+ "trigger": "jq.:la"
+ },
+ {
+ "description": "jq - :lt",
+ "id": 274,
+ "trigger": "jq.:lt"
+ },
+ {
+ "description": "jq - Multiple Attribute",
+ "id": 275,
+ "trigger": "jq.[][]"
+ },
+ {
+ "description": "jq - Multiple",
+ "id": 276,
+ "trigger": "jq.,"
+ },
+ {
+ "description": "jq - Next Adjacent",
+ "id": 277,
+ "trigger": "jq.+"
+ },
+ {
+ "description": "jq - Next Siblings",
+ "id": 278,
+ "trigger": "jq.snss"
+ },
+ {
+ "description": "jq - :not",
+ "id": 279,
+ "trigger": "jq.:not"
+ },
+ {
+ "description": "jq - :nth-child",
+ "id": 280,
+ "trigger": "jq.:nc"
+ },
+ {
+ "description": "jq - :nth-last-child",
+ "id": 281,
+ "trigger": "jq.:nlc"
+ },
+ {
+ "description": "jq - :nth-last-of-type",
+ "id": 282,
+ "trigger": "jq.:nlt"
+ },
+ {
+ "description": "jq - :nth-of-type",
+ "id": 283,
+ "trigger": "jq.:nt"
+ },
+ {
+ "description": "jq - :odd",
+ "id": 284,
+ "trigger": "jq.:o"
+ },
+ {
+ "description": "jq - :only-child",
+ "id": 285,
+ "trigger": "jq.:oc"
+ },
+ {
+ "description": "jq - :only-of-type",
+ "id": 286,
+ "trigger": "jq.:ot"
+ },
+ {
+ "description": "jq - :parent",
+ "id": 287,
+ "trigger": "jq.:p"
+ },
+ {
+ "description": "jq - :password",
+ "id": 288,
+ "trigger": "jq.:pa"
+ },
+ {
+ "description": "jq - :radio",
+ "id": 289,
+ "trigger": "jq.:r"
+ },
+ {
+ "description": "jq - :reset",
+ "id": 290,
+ "trigger": "jq.:re"
+ },
+ {
+ "description": "jq - :root",
+ "id": 291,
+ "trigger": "jq.:ro"
+ },
+ {
+ "description": "jq - :selected",
+ "id": 292,
+ "trigger": "jq.:s"
+ },
+ {
+ "description": "jq - :submit",
+ "id": 293,
+ "trigger": "jq.:su"
+ },
+ {
+ "description": "jq - :target",
+ "id": 294,
+ "trigger": "jq.:t"
+ },
+ {
+ "description": "jq - :text",
+ "id": 295,
+ "trigger": "jq.:tx"
+ },
+ {
+ "description": "jq - :visible",
+ "id": 296,
+ "trigger": "jq.:v"
+ },
+ {
+ "description": "jq - addBack",
+ "id": 297,
+ "trigger": "jq.addback"
+ },
+ {
+ "description": "jq - add",
+ "id": 298,
+ "trigger": "jq.add"
+ },
+ {
+ "description": "jq - children",
+ "id": 299,
+ "trigger": "jq.children"
+ },
+ {
+ "description": "jq - closest",
+ "id": 300,
+ "trigger": "jq.closest"
+ },
+ {
+ "description": "jq - contents",
+ "id": 301,
+ "trigger": "jq.contents"
+ },
+ {
+ "description": "jq - each",
+ "id": 302,
+ "trigger": "jq.each"
+ },
+ {
+ "description": "jq - end",
+ "id": 303,
+ "trigger": "jq.end"
+ },
+ {
+ "description": "jq - eq",
+ "id": 304,
+ "trigger": "jq.eq"
+ },
+ {
+ "description": "jq - filter",
+ "id": 305,
+ "trigger": "jq.filter"
+ },
+ {
+ "description": "jq - find",
+ "id": 306,
+ "trigger": "jq.find"
+ },
+ {
+ "description": "jq - first",
+ "id": 307,
+ "trigger": "jq.first"
+ },
+ {
+ "description": "jq - has",
+ "id": 308,
+ "trigger": "jq.has"
+ },
+ {
+ "description": "jq - is",
+ "id": 309,
+ "trigger": "jq.is"
+ },
+ {
+ "description": "jq - last",
+ "id": 310,
+ "trigger": "jq.last"
+ },
+ {
+ "description": "jq - map",
+ "id": 311,
+ "trigger": "jq.map"
+ },
+ {
+ "description": "jq - nextAll",
+ "id": 312,
+ "trigger": "jq.nextall"
+ },
+ {
+ "description": "jq - nextUntil",
+ "id": 313,
+ "trigger": "jq.nextuntil"
+ },
+ {
+ "description": "jq - next",
+ "id": 314,
+ "trigger": "jq.next"
+ },
+ {
+ "description": "jq - not",
+ "id": 315,
+ "trigger": "jq.not"
+ },
+ {
+ "description": "jq - parent",
+ "id": 316,
+ "trigger": "jq.parent"
+ },
+ {
+ "description": "jq - parentsUntil",
+ "id": 317,
+ "trigger": "jq.puntil"
+ },
+ {
+ "description": "jq - parents",
+ "id": 318,
+ "trigger": "jq.parents"
+ },
+ {
+ "description": "jq - prevAll",
+ "id": 319,
+ "trigger": "jq.prevall"
+ },
+ {
+ "description": "jq - prevUntil",
+ "id": 320,
+ "trigger": "jq.prevuntil"
+ },
+ {
+ "description": "jq - prev",
+ "id": 321,
+ "trigger": "jq.prev"
+ },
+ {
+ "description": "jq - siblings",
+ "id": 322,
+ "trigger": "jq.ts"
+ },
+ {
+ "description": "jq - slice",
+ "id": 323,
+ "trigger": "jq.tsl"
+ },
+ {
+ "description": "jq - contains",
+ "id": 324,
+ "trigger": "jq.contains"
+ },
+ {
+ "description": "jq - jQuery each",
+ "id": 325,
+ "trigger": "jq.jeach"
+ },
+ {
+ "description": "jq - extend",
+ "id": 326,
+ "trigger": "jq.extend"
+ },
+ {
+ "description": "jq - fn.extend",
+ "id": 327,
+ "trigger": "jq.fnextend"
+ },
+ {
+ "description": "jq - globalEval",
+ "id": 328,
+ "trigger": "jq.geval"
+ },
+ {
+ "description": "jq - grep",
+ "id": 329,
+ "trigger": "jq.grep"
+ },
+ {
+ "description": "jq - inArray",
+ "id": 330,
+ "trigger": "jq.inarray"
+ },
+ {
+ "description": "jq - isEmptyObject",
+ "id": 331,
+ "trigger": "jq.ieobject"
+ },
+ {
+ "description": "jq - isFunction",
+ "id": 332,
+ "trigger": "jq.ifunction"
+ },
+ {
+ "description": "jq - isNumeric",
+ "id": 333,
+ "trigger": "jq.inumeric"
+ },
+ {
+ "description": "jq - isPlainObject",
+ "id": 334,
+ "trigger": "jq.ipobject"
+ },
+ {
+ "description": "jq - isWindow",
+ "id": 335,
+ "trigger": "jq.iwindow"
+ },
+ {
+ "description": "jq - isXMLDoc",
+ "id": 336,
+ "trigger": "jq.ixmldoc"
+ },
+ {
+ "description": "jq - makeArray",
+ "id": 337,
+ "trigger": "jq.marray"
+ },
+ {
+ "description": "jq - jQuery map",
+ "id": 338,
+ "trigger": "jq.jmap"
+ },
+ {
+ "description": "jq - merge",
+ "id": 339,
+ "trigger": "jq.merge"
+ },
+ {
+ "description": "jq - noop",
+ "id": 340,
+ "trigger": "jq.noop"
+ },
+ {
+ "description": "jq - now",
+ "id": 341,
+ "trigger": "jq.now"
+ },
+ {
+ "description": "jq - parseHTML",
+ "id": 342,
+ "trigger": "jq.parseh"
+ },
+ {
+ "description": "jq - parseJSON",
+ "id": 343,
+ "trigger": "jq.parsej"
+ },
+ {
+ "description": "jq - parseXML",
+ "id": 344,
+ "trigger": "jq.parsex"
+ },
+ {
+ "description": "jq - proxy",
+ "id": 345,
+ "trigger": "jq.proxy"
+ },
+ {
+ "description": "jq - trim",
+ "id": 346,
+ "trigger": "jq.trim"
+ },
+ {
+ "description": "jq - jQuery type",
+ "id": 347,
+ "trigger": "jq.jtype"
+ },
+ {
+ "description": "jq - unique",
+ "id": 348,
+ "trigger": "jq.unique"
+ },
+ {
+ "description": "jq - jQuery Boilerplate",
+ "id": 349,
+ "trigger": "jq.b"
+ },
+ {
+ "description": "jr - forceUpdate",
+ "id": 350,
+ "trigger": "jr.fupdate"
+ },
+ {
+ "description": "jr - isMounted",
+ "id": 351,
+ "trigger": "jr.imounted"
+ },
+ {
+ "description": "jr - replaceProps",
+ "id": 352,
+ "trigger": "jr.rprops"
+ },
+ {
+ "description": "jr - replaceState",
+ "id": 353,
+ "trigger": "jr.rstate"
+ },
+ {
+ "description": "jr - setProps",
+ "id": 354,
+ "trigger": "jr.sprops"
+ },
+ {
+ "description": "jr - setState",
+ "id": 355,
+ "trigger": "jr.setstate"
+ },
+ {
+ "description": "jr - onBlur",
+ "id": 356,
+ "trigger": "jr.onbl"
+ },
+ {
+ "description": "jr - onChange",
+ "id": 357,
+ "trigger": "jr.onch"
+ },
+ {
+ "description": "jr - onClick",
+ "id": 358,
+ "trigger": "jr.oncl"
+ },
+ {
+ "description": "jr - onContextMenu",
+ "id": 359,
+ "trigger": "jr.oncm"
+ },
+ {
+ "description": "jr - onCopy",
+ "id": 360,
+ "trigger": "jr.onco"
+ },
+ {
+ "description": "jr - onCut",
+ "id": 361,
+ "trigger": "jr.onct"
+ },
+ {
+ "description": "jr - onDoubleClick",
+ "id": 362,
+ "trigger": "jr.ondc"
+ },
+ {
+ "description": "jr - onDragEnd",
+ "id": 363,
+ "trigger": "jr.onde"
+ },
+ {
+ "description": "jr - onDragEnter",
+ "id": 364,
+ "trigger": "jr.onden"
+ },
+ {
+ "description": "jr - onDragExit",
+ "id": 365,
+ "trigger": "jr.ondex"
+ },
+ {
+ "description": "jr - onDragLeave",
+ "id": 366,
+ "trigger": "jr.ondl"
+ },
+ {
+ "description": "jr - onDragOver",
+ "id": 367,
+ "trigger": "jr.ondo"
+ },
+ {
+ "description": "jr - onDragStart",
+ "id": 368,
+ "trigger": "jr.onds"
+ },
+ {
+ "description": "jr - onDrop",
+ "id": 369,
+ "trigger": "jr.ondr"
+ },
+ {
+ "description": "jr - onFocus",
+ "id": 370,
+ "trigger": "jr.onfo"
+ },
+ {
+ "description": "jr - onInput",
+ "id": 371,
+ "trigger": "jr.onin"
+ },
+ {
+ "description": "jr - onKeyDown",
+ "id": 372,
+ "trigger": "jr.onkd"
+ },
+ {
+ "description": "jr - onKeyPress",
+ "id": 373,
+ "trigger": "jr.onkp"
+ },
+ {
+ "description": "jr - onKeyUp",
+ "id": 374,
+ "trigger": "jr.onku"
+ },
+ {
+ "description": "jr - onMouseDown",
+ "id": 375,
+ "trigger": "jr.onmd"
+ },
+ {
+ "description": "jr - onMouseEnter",
+ "id": 376,
+ "trigger": "jr.onme"
+ },
+ {
+ "description": "jr - onMouseLeave",
+ "id": 377,
+ "trigger": "jr.onml"
+ },
+ {
+ "description": "jr - onMouseMove",
+ "id": 378,
+ "trigger": "jr.onmm"
+ },
+ {
+ "description": "jr - onMouseOut",
+ "id": 379,
+ "trigger": "jr.onmo"
+ },
+ {
+ "description": "jr - onMouseOver",
+ "id": 380,
+ "trigger": "jr.onmov"
+ },
+ {
+ "description": "jr - onMouseUp",
+ "id": 381,
+ "trigger": "jr.onmu"
+ },
+ {
+ "description": "jr - onPaste",
+ "id": 382,
+ "trigger": "jr.onpa"
+ },
+ {
+ "description": "jr - onScroll",
+ "id": 383,
+ "trigger": "jr.onsc"
+ },
+ {
+ "description": "jr - onSubmit",
+ "id": 384,
+ "trigger": "jr.onsu"
+ },
+ {
+ "description": "jr - onTouchCancel",
+ "id": 385,
+ "trigger": "jr.ontc"
+ },
+ {
+ "description": "jr - onTouchEnd",
+ "id": 386,
+ "trigger": "jr.onte"
+ },
+ {
+ "description": "jr - onTouchMove",
+ "id": 387,
+ "trigger": "jr.ontm"
+ },
+ {
+ "description": "jr - onTouchStart",
+ "id": 388,
+ "trigger": "jr.onts"
+ },
+ {
+ "description": "jr - onWheel",
+ "id": 389,
+ "trigger": "jr.onwh"
+ },
+ {
+ "description": "jr - componentDidMount",
+ "id": 390,
+ "trigger": "jr.cdmount"
+ },
+ {
+ "description": "jr - componentDidUpdate",
+ "id": 391,
+ "trigger": "jr.cdupdate"
+ },
+ {
+ "description": "jr - componentWillMount",
+ "id": 392,
+ "trigger": "jr.cwmount"
+ },
+ {
+ "description": "jr - componentWillReceiveProps",
+ "id": 393,
+ "trigger": "jr.cwrprops"
+ },
+ {
+ "description": "jr - componentWillUnmount",
+ "id": 394,
+ "trigger": "jr.cwunmount"
+ },
+ {
+ "description": "jr - componentWillUpdate",
+ "id": 395,
+ "trigger": "jr.cwupdate"
+ },
+ {
+ "description": "jr - shouldComponentUpdate",
+ "id": 396,
+ "trigger": "jr.scupdate"
+ },
+ {
+ "description": "jr - PropTypes.any",
+ "id": 397,
+ "trigger": "jr.ptany"
+ },
+ {
+ "description": "jr - PropTypes.arrayOf",
+ "id": 398,
+ "trigger": "jr.ptarrayof"
+ },
+ {
+ "description": "jr - PropTypes.array",
+ "id": 399,
+ "trigger": "jr.ptarray"
+ },
+ {
+ "description": "jr - PropTypes.bool",
+ "id": 400,
+ "trigger": "jr.ptbool"
+ },
+ {
+ "description": "jr - PropTypes.element",
+ "id": 401,
+ "trigger": "jr.ptelement"
+ },
+ {
+ "description": "jr - PropTypes.func",
+ "id": 402,
+ "trigger": "jr.ptfunc"
+ },
+ {
+ "description": "jr - PropTypes.instanceOf",
+ "id": 403,
+ "trigger": "jr.ptiof"
+ },
+ {
+ "description": "jr - PropTypes.node",
+ "id": 404,
+ "trigger": "jr.ptnode"
+ },
+ {
+ "description": "jr - PropTypes.number",
+ "id": 405,
+ "trigger": "jr.ptnumber"
+ },
+ {
+ "description": "jr - PropTypes.objectOf",
+ "id": 406,
+ "trigger": "jr.ptobjectof"
+ },
+ {
+ "description": "jr - PropTypes.object",
+ "id": 407,
+ "trigger": "jr.ptobject"
+ },
+ {
+ "description": "jr - PropTypes.oneOfType",
+ "id": 408,
+ "trigger": "jr.ptootype"
+ },
+ {
+ "description": "jr - PropTypes.oneOf",
+ "id": 409,
+ "trigger": "jr.ptoneof"
+ },
+ {
+ "description": "jr - PropTypes.shape",
+ "id": 410,
+ "trigger": "jr.ptshape"
+ },
+ {
+ "description": "jr - PropTypes.string",
+ "id": 411,
+ "trigger": "jr.ptstring"
+ },
+ {
+ "description": "jr - findDOMNode",
+ "id": 412,
+ "trigger": "jr.fdnode"
+ },
+ {
+ "description": "jr - renderStaticMarkup",
+ "id": 413,
+ "trigger": "jr.rsmarkup"
+ },
+ {
+ "description": "jr - renderToString",
+ "id": 414,
+ "trigger": "jr.rtstring"
+ },
+ {
+ "description": "jr - render",
+ "id": 415,
+ "trigger": "jr.render"
+ },
+ {
+ "description": "jr - unmountComponentAtNode",
+ "id": 416,
+ "trigger": "jr.ucanode"
+ },
+ {
+ "description": "jr - displayName",
+ "id": 417,
+ "trigger": "jr.dname"
+ },
+ {
+ "description": "jr - getDefaultProps",
+ "id": 418,
+ "trigger": "jr.gdprops"
+ },
+ {
+ "description": "jr - getInitialState",
+ "id": 419,
+ "trigger": "jr.gistate"
+ },
+ {
+ "description": "jr - mixins",
+ "id": 420,
+ "trigger": "jr.mixins"
+ },
+ {
+ "description": "jr - propTypes",
+ "id": 421,
+ "trigger": "jr.ptypes"
+ },
+ {
+ "description": "jr - render",
+ "id": 422,
+ "trigger": "jr.srender"
+ },
+ {
+ "description": "jr - statics",
+ "id": 423,
+ "trigger": "jr.statics"
+ },
+ {
+ "description": "jr - findAllInRenderedTree",
+ "id": 424,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - findRenderedComponentWithType",
+ "id": 425,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - findRenderedDOMComponentWithClass",
+ "id": 426,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - findRenderedDOMComponentWithTag",
+ "id": 427,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - isCompositeComponentWithType",
+ "id": 428,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - isCompositeComponent",
+ "id": 429,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - isDOMComponent",
+ "id": 430,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - isElementOfType",
+ "id": 431,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - isElement",
+ "id": 432,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - mockComponent",
+ "id": 433,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - renderIntoDocument",
+ "id": 434,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - scryRenderedComponentsWithType",
+ "id": 435,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - scryRenderedDOMComponentsWithClass",
+ "id": 436,
+ "trigger": "jr.tsrdcwclass"
+ },
+ {
+ "description": "jr - scryRenderedDOMComponentsWithTag",
+ "id": 437,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (basics)",
+ "id": 438,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (child-count)",
+ "id": 439,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (child-equality)",
+ "id": 440,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (events)",
+ "id": 441,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (props)",
+ "id": 442,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (state changes)",
+ "id": 443,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Shallow rendering (type)",
+ "id": 444,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Simulate (basic)",
+ "id": 445,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - Simulate (with data)",
+ "id": 446,
+ "trigger": "jr.z.testutils"
+ },
+ {
+ "description": "jr - children.count",
+ "id": 447,
+ "trigger": "jr.chcount"
+ },
+ {
+ "description": "jr - children.forEach",
+ "id": 448,
+ "trigger": "jr.chfeach"
+ },
+ {
+ "description": "jr - children.map",
+ "id": 449,
+ "trigger": "jr.chmap"
+ },
+ {
+ "description": "jr - cloneElement",
+ "id": 450,
+ "trigger": "jr.clelement"
+ },
+ {
+ "description": "jr - component",
+ "id": 451,
+ "trigger": "jr.component"
+ },
+ {
+ "description": "jr - createClass",
+ "id": 452,
+ "trigger": "jr.cclass"
+ },
+ {
+ "description": "jr - createElement",
+ "id": 453,
+ "trigger": "jr.celement"
+ },
+ {
+ "description": "jr - createFactory",
+ "id": 454,
+ "trigger": "jr.cfactory"
+ },
+ {
+ "description": "jr - isValidElement",
+ "id": 455,
+ "trigger": "jr.ivelement"
+ },
+ {
+ "description": "jdp - Command",
+ "id": 456,
+ "trigger": "jdp.command"
+ },
+ {
+ "description": "jdp - Constructor",
+ "id": 457,
+ "trigger": "jdp.constructor"
+ },
+ {
+ "description": "jdp - Decorator",
+ "id": 458,
+ "trigger": "jdp.decorator"
+ },
+ {
+ "description": "jdp - Facade",
+ "id": 459,
+ "trigger": "jdp.facade"
+ },
+ {
+ "description": "jdp - Factory",
+ "id": 460,
+ "trigger": "jdp.factory"
+ },
+ {
+ "description": "jdp - Flyweight",
+ "id": 461,
+ "trigger": "jdp.flyweight"
+ },
+ {
+ "description": "jdp - Mediator",
+ "id": 462,
+ "trigger": "jdp.mediator"
+ },
+ {
+ "description": "jdp - Mixin",
+ "id": 463,
+ "trigger": "jdp.mixin"
+ },
+ {
+ "description": "jdp - Module",
+ "id": 464,
+ "trigger": "jdp.module"
+ },
+ {
+ "description": "jdp - Observer",
+ "id": 465,
+ "trigger": "jdp.observer"
+ },
+ {
+ "description": "jdp - Prototype",
+ "id": 466,
+ "trigger": "jdp.prototype"
+ },
+ {
+ "description": "jdp - Revealing Module",
+ "id": 467,
+ "trigger": "jdp.rmodule"
+ },
+ {
+ "description": "jdp - Singleton",
+ "id": 468,
+ "trigger": "jdp.singleton"
+ },
+ {
+ "description": "jumd - AMD Web Global",
+ "id": 469,
+ "trigger": "jumd.awg"
+ },
+ {
+ "description": "jumd - AMD Web",
+ "id": 470,
+ "trigger": "jumd.aw"
+ },
+ {
+ "description": "jumd - CommonJS Adapter",
+ "id": 471,
+ "trigger": "jumd.ca"
+ },
+ {
+ "description": "jumd - CommonJS Strict Global",
+ "id": 472,
+ "trigger": "jumd.csg"
+ },
+ {
+ "description": "jumd - CommonJS Strict",
+ "id": 473,
+ "trigger": "jumd.cs"
+ },
+ {
+ "description": "jumd - jQuery plugin",
+ "id": 474,
+ "trigger": "jumd.jp"
+ },
+ {
+ "description": "jumd - Node Adapter",
+ "id": 475,
+ "trigger": "jumd.na"
+ },
+ {
+ "description": "jumd - Return Exports Global",
+ "id": 476,
+ "trigger": "jumd.reg"
+ },
+ {
+ "description": "jumd - Return Exports",
+ "id": 477,
+ "trigger": "jumd.re"
+ },
+ {
+ "description": "tc - Expect to.be.a",
+ "id": 478,
+ "trigger": "tc.e.tba"
+ },
+ {
+ "description": "tc - Expect to.equal",
+ "id": 479,
+ "trigger": "tc.e.te"
+ },
+ {
+ "description": "tc - Expect to.have.length",
+ "id": 480,
+ "trigger": "tc.e.thl"
+ },
+ {
+ "description": "tc - Expect to.have.property",
+ "id": 481,
+ "trigger": "tc.e.thp"
+ },
+ {
+ "description": "tc - Should be.a",
+ "id": 482,
+ "trigger": "tc.s.ba"
+ },
+ {
+ "description": "tc - Should equal",
+ "id": 483,
+ "trigger": "tc.s.e"
+ },
+ {
+ "description": "tc - Should have.length",
+ "id": 484,
+ "trigger": "tc.s.hl"
+ },
+ {
+ "description": "tc - Should have.property",
+ "id": 485,
+ "trigger": "tc.s.hp"
+ },
+ {
+ "description": "tc - Assert equal",
+ "id": 486,
+ "trigger": "tc.a.e"
+ },
+ {
+ "description": "tc - Assert lengthOf",
+ "id": 487,
+ "trigger": "tc.a.lo"
+ },
+ {
+ "description": "tc - Assert typeOf",
+ "id": 488,
+ "trigger": "tc.a.to"
+ },
+ {
+ "description": "t - afterEach",
+ "id": 489,
+ "trigger": "t.aftereach"
+ },
+ {
+ "description": "t - after",
+ "id": 490,
+ "trigger": "t.after"
+ },
+ {
+ "description": "t - beforeEach",
+ "id": 491,
+ "trigger": "t.beforeeach"
+ },
+ {
+ "description": "t - before",
+ "id": 492,
+ "trigger": "t.before"
+ },
+ {
+ "description": "t - describe",
+ "id": 493,
+ "trigger": "t.describe"
+ },
+ {
+ "description": "t - it",
+ "id": 494,
+ "trigger": "t.it"
+ },
+ {
+ "description": "tj - Expect toBeCloseTo",
+ "id": 495,
+ "trigger": "tj.closeto"
+ },
+ {
+ "description": "tj - Expect toBeContain",
+ "id": 496,
+ "trigger": "tj.contain"
+ },
+ {
+ "description": "tj - Expect toBeDefined",
+ "id": 497,
+ "trigger": "tj.defined"
+ },
+ {
+ "description": "tj - Expect toBeFalsy",
+ "id": 498,
+ "trigger": "tj.falsy"
+ },
+ {
+ "description": "tj - Expect toBeGreaterThan",
+ "id": 499,
+ "trigger": "tj.greaterthan"
+ },
+ {
+ "description": "tj - Expect toBeLessThan",
+ "id": 500,
+ "trigger": "tj.lessthan"
+ },
+ {
+ "description": "tj - Expect toBeNaN",
+ "id": 501,
+ "trigger": "tj.nan"
+ },
+ {
+ "description": "tj - Expect toBeNull",
+ "id": 502,
+ "trigger": "tj.null"
+ },
+ {
+ "description": "tj - Expect toBeTruthy",
+ "id": 503,
+ "trigger": "tj.truthy"
+ },
+ {
+ "description": "tj - Expect toBeUndefined",
+ "id": 504,
+ "trigger": "tj.undefined"
+ },
+ {
+ "description": "tj - Expect toBe",
+ "id": 505,
+ "trigger": "tj.tobe"
+ },
+ {
+ "description": "tj - Expect toEqual",
+ "id": 506,
+ "trigger": "tj.equal"
+ },
+ {
+ "description": "tj - Expect toHaveBeenCalledTimes",
+ "id": 507,
+ "trigger": "tj.hbctimes"
+ },
+ {
+ "description": "tj - Expect toHaveBeenCalledWith",
+ "id": 508,
+ "trigger": "tj.hbcwith"
+ },
+ {
+ "description": "tj - Expect toHaveBeenCalled",
+ "id": 509,
+ "trigger": "tj.hbc"
+ },
+ {
+ "description": "tj - Expect toMatch",
+ "id": 510,
+ "trigger": "tj.match"
+ },
+ {
+ "description": "tj - Expect toThrowError",
+ "id": 511,
+ "trigger": "tj.throwerror"
+ },
+ {
+ "description": "tj - Expect toThrow",
+ "id": 512,
+ "trigger": "tj.throw"
+ },
+ {
+ "description": "tm - config",
+ "id": 513,
+ "trigger": "tm.config"
+ },
+ {
+ "description": "tm - globals",
+ "id": 514,
+ "trigger": "tm.globals"
+ },
+ {
+ "description": "tm - grep",
+ "id": 515,
+ "trigger": "tm.grep"
+ },
+ {
+ "description": "tm - growl",
+ "id": 516,
+ "trigger": "tm.growl"
+ },
+ {
+ "description": "tm - ignoreLeaks",
+ "id": 517,
+ "trigger": "tm.ileaks"
+ },
+ {
+ "description": "tm - invert",
+ "id": 518,
+ "trigger": "tm.invert"
+ },
+ {
+ "description": "tm - reporter",
+ "id": 519,
+ "trigger": "tm.reporter"
+ },
+ {
+ "description": "tm - run",
+ "id": 520,
+ "trigger": "tm.run"
+ },
+ {
+ "description": "tm - setup",
+ "id": 521,
+ "trigger": "tm.setup"
+ },
+ {
+ "description": "tm - ui",
+ "id": 522,
+ "trigger": "tm.ui"
+ },
+ {
+ "description": "tn - Assert deepEqual",
+ "id": 523,
+ "trigger": "tn.dequal"
+ },
+ {
+ "description": "tn - Assert deepStrictEqual",
+ "id": 524,
+ "trigger": "tn.dsequal"
+ },
+ {
+ "description": "tn - Assert doesNotThrow",
+ "id": 525,
+ "trigger": "tn.dnthrow"
+ },
+ {
+ "description": "tn - Assert equal",
+ "id": 526,
+ "trigger": "tn.equal"
+ },
+ {
+ "description": "tn - Assert fail",
+ "id": 527,
+ "trigger": "tn.fail"
+ },
+ {
+ "description": "tn - Assert ifError",
+ "id": 528,
+ "trigger": "tn.iferror"
+ },
+ {
+ "description": "tn - Assert notDeepEqual",
+ "id": 529,
+ "trigger": "tn.ndequal"
+ },
+ {
+ "description": "tn - Assert notDeepStrictEqual",
+ "id": 530,
+ "trigger": "tn.ndsequal"
+ },
+ {
+ "description": "tn - Assert notEqual",
+ "id": 531,
+ "trigger": "tn.nequal"
+ },
+ {
+ "description": "tn - Assert notStrictEqual",
+ "id": 532,
+ "trigger": "tn.nsequal"
+ },
+ {
+ "description": "tn - Assert ok",
+ "id": 533,
+ "trigger": "tn.ok"
+ },
+ {
+ "description": "tn - Assert strictEqual",
+ "id": 534,
+ "trigger": "tn.sequal"
+ },
+ {
+ "description": "tn - Assert throws",
+ "id": 535,
+ "trigger": "tn.throws"
+ },
+ {
+ "description": "tn - Assert",
+ "id": 536,
+ "trigger": "tn.a"
+ },
+ {
+ "description": "tq - Assert async",
+ "id": 537,
+ "trigger": "tq.async"
+ },
+ {
+ "description": "tq - Assert deepEqual",
+ "id": 538,
+ "trigger": "tq.dequal"
+ },
+ {
+ "description": "tq - Assert equal",
+ "id": 539,
+ "trigger": "tq.equal"
+ },
+ {
+ "description": "tq - notDeepEqual",
+ "id": 540,
+ "trigger": "tq.ndequal"
+ },
+ {
+ "description": "tq - notEqual",
+ "id": 541,
+ "trigger": "tq.nequal"
+ },
+ {
+ "description": "tq - notOk",
+ "id": 542,
+ "trigger": "tq.nok"
+ },
+ {
+ "description": "tq - notPropEqual",
+ "id": 543,
+ "trigger": "tq.npequal"
+ },
+ {
+ "description": "tq - notStrictEqual",
+ "id": 544,
+ "trigger": "tq.nsequal"
+ },
+ {
+ "description": "tq - ok",
+ "id": 545,
+ "trigger": "tq.ok"
+ },
+ {
+ "description": "tq - propEqual",
+ "id": 546,
+ "trigger": "tq.pequal"
+ },
+ {
+ "description": "tq - strictEqual",
+ "id": 547,
+ "trigger": "tq.sequal"
+ },
+ {
+ "description": "tq - throws",
+ "id": 548,
+ "trigger": "tq.throws"
+ },
+ {
+ "description": "tq - QUnit.begin",
+ "id": 549,
+ "trigger": "tq.begin"
+ },
+ {
+ "description": "tq - QUnit.config",
+ "id": 550,
+ "trigger": "tq.config"
+ },
+ {
+ "description": "tq - QUnit.done",
+ "id": 551,
+ "trigger": "tq.done"
+ },
+ {
+ "description": "tq - QUnit.dump.parse",
+ "id": 552,
+ "trigger": "tq.dparse"
+ },
+ {
+ "description": "tq - Expect",
+ "id": 553,
+ "trigger": "tq.expect"
+ },
+ {
+ "description": "tq - QUnit.extend",
+ "id": 554,
+ "trigger": "tq.extend"
+ },
+ {
+ "description": "tq - QUnit.log",
+ "id": 555,
+ "trigger": "tq.log"
+ },
+ {
+ "description": "tq - QUnit.moduleDone",
+ "id": 556,
+ "trigger": "tq.mdone"
+ },
+ {
+ "description": "tq - QUnit.moduleStart",
+ "id": 557,
+ "trigger": "tq.mstart"
+ },
+ {
+ "description": "tq - QUnit.module",
+ "id": 558,
+ "trigger": "tq.module"
+ },
+ {
+ "description": "tq - QUnit.only",
+ "id": 559,
+ "trigger": "tq.only"
+ },
+ {
+ "description": "tq - push",
+ "id": 560,
+ "trigger": "tq.push"
+ },
+ {
+ "description": "tq - QUnit.skip",
+ "id": 561,
+ "trigger": "tq.skip"
+ },
+ {
+ "description": "tq - QUnit.stack",
+ "id": 562,
+ "trigger": "tq.stack"
+ },
+ {
+ "description": "tq - QUnit.testDone",
+ "id": 563,
+ "trigger": "tq.tdone"
+ },
+ {
+ "description": "tq - QUnit.testStart",
+ "id": 564,
+ "trigger": "tq.tstart"
+ },
+ {
+ "description": "tq - Test",
+ "id": 565,
+ "trigger": "tq.test"
+ },
+ {
+ "description": "ts - Assert alwaysCalledOn",
+ "id": 566,
+ "trigger": "ts.acon"
+ },
+ {
+ "description": "ts - Assert alwaysCalledWithExactly",
+ "id": 567,
+ "trigger": "ts.acalledwe"
+ },
+ {
+ "description": "ts - Assert alwaysCalledWithMatch",
+ "id": 568,
+ "trigger": "ts.acalledwm"
+ },
+ {
+ "description": "ts - Assert alwaysCalledWith",
+ "id": 569,
+ "trigger": "ts.acalledw"
+ },
+ {
+ "description": "ts - Assert alwaysThrew",
+ "id": 570,
+ "trigger": "ts.athrew"
+ },
+ {
+ "description": "ts - Assert callCount",
+ "id": 571,
+ "trigger": "ts.ccount"
+ },
+ {
+ "description": "ts - Assert callOrder",
+ "id": 572,
+ "trigger": "ts.corder"
+ },
+ {
+ "description": "ts - Assert calledOn",
+ "id": 573,
+ "trigger": "ts.con"
+ },
+ {
+ "description": "ts - Assert calledOnce",
+ "id": 574,
+ "trigger": "ts.calledo"
+ },
+ {
+ "description": "ts - Assert calledThrice",
+ "id": 575,
+ "trigger": "ts.calledth"
+ },
+ {
+ "description": "ts - Assert calledTwice",
+ "id": 576,
+ "trigger": "ts.calledt"
+ },
+ {
+ "description": "ts - Assert calledWithExactly",
+ "id": 577,
+ "trigger": "ts.calledwe"
+ },
+ {
+ "description": "ts - Assert calledWithMatch",
+ "id": 578,
+ "trigger": "ts.calledwm"
+ },
+ {
+ "description": "ts - Assert calledWith",
+ "id": 579,
+ "trigger": "ts.calledw"
+ },
+ {
+ "description": "ts - Assert called",
+ "id": 580,
+ "trigger": "ts.called"
+ },
+ {
+ "description": "ts - Assert expose",
+ "id": 581,
+ "trigger": "ts.expose"
+ },
+ {
+ "description": "ts - Assert failException",
+ "id": 582,
+ "trigger": "ts.faile"
+ },
+ {
+ "description": "ts - Assert fail",
+ "id": 583,
+ "trigger": "ts.afail"
+ },
+ {
+ "description": "ts - Assert neverCalledWithMatch",
+ "id": 584,
+ "trigger": "ts.ncalledwm"
+ },
+ {
+ "description": "ts - Assert neverCalledWith",
+ "id": 585,
+ "trigger": "ts.ncalledw"
+ },
+ {
+ "description": "ts - Assert notCalled",
+ "id": 586,
+ "trigger": "ts.ncalled"
+ },
+ {
+ "description": "ts - Assert pass",
+ "id": 587,
+ "trigger": "ts.pass"
+ },
+ {
+ "description": "ts - Assert threw",
+ "id": 588,
+ "trigger": "ts.threw"
+ },
+ {
+ "description": "j - if else",
+ "id": 589,
+ "trigger": "j.ifelse"
+ },
+ {
+ "description": "j - switch",
+ "id": 590,
+ "trigger": "j.switch"
+ },
+ {
+ "description": "j - console.dir",
+ "id": 591,
+ "trigger": "j.cd"
+ },
+ {
+ "description": "j - console.error",
+ "id": 592,
+ "trigger": "j.ce"
+ },
+ {
+ "description": "j - console.info",
+ "id": 593,
+ "trigger": "j.ci"
+ },
+ {
+ "description": "j - console.log",
+ "id": 594,
+ "trigger": "j.cl"
+ },
+ {
+ "description": "j - console.warn",
+ "id": 595,
+ "trigger": "j.cw"
+ },
+ {
+ "description": "j - addEventListener",
+ "id": 596,
+ "trigger": "j.ael"
+ },
+ {
+ "description": "j - appendChild",
+ "id": 597,
+ "trigger": "j.ac"
+ },
+ {
+ "description": "j - classList.add",
+ "id": 598,
+ "trigger": "j.cla"
+ },
+ {
+ "description": "j - classList.remove",
+ "id": 599,
+ "trigger": "j.clr"
+ },
+ {
+ "description": "j - classList.toggle",
+ "id": 600,
+ "trigger": "j.clt"
+ },
+ {
+ "description": "j - createDocumentFragment",
+ "id": 601,
+ "trigger": "j.cdf"
+ },
+ {
+ "description": "j - createElement",
+ "id": 602,
+ "trigger": "j.cel"
+ },
+ {
+ "description": "j - getAttribute",
+ "id": 603,
+ "trigger": "j.gattr"
+ },
+ {
+ "description": "j - getElementById",
+ "id": 604,
+ "trigger": "j.gid"
+ },
+ {
+ "description": "j - getElementsByClassName",
+ "id": 605,
+ "trigger": "j.gclass"
+ },
+ {
+ "description": "j - getElementsByTagName",
+ "id": 606,
+ "trigger": "j.gtag"
+ },
+ {
+ "description": "j - innerHTML",
+ "id": 607,
+ "trigger": "j.ih"
+ },
+ {
+ "description": "j - querySelectorAll",
+ "id": 608,
+ "trigger": "j.qsa"
+ },
+ {
+ "description": "j - querySelector",
+ "id": 609,
+ "trigger": "j.qs"
+ },
+ {
+ "description": "j - removeAttribute",
+ "id": 610,
+ "trigger": "j.rattr"
+ },
+ {
+ "description": "j - removeChild",
+ "id": 611,
+ "trigger": "j.rc"
+ },
+ {
+ "description": "j - setAttribute",
+ "id": 612,
+ "trigger": "j.sattr"
+ },
+ {
+ "description": "j - textContent",
+ "id": 613,
+ "trigger": "j.tc"
+ },
+ {
+ "description": "j - Anonymous Function",
+ "id": 614,
+ "trigger": "j.afn"
+ },
+ {
+ "description": "j - Function apply",
+ "id": 615,
+ "trigger": "j.apply"
+ },
+ {
+ "description": "j - Function call",
+ "id": 616,
+ "trigger": "j.call"
+ },
+ {
+ "description": "j - Immediately-invoked function expression",
+ "id": 617,
+ "trigger": "j.iife"
+ },
+ {
+ "description": "j - Prototype",
+ "id": 618,
+ "trigger": "j.prot"
+ },
+ {
+ "description": "j - Function",
+ "id": 619,
+ "trigger": "j.fn"
+ },
+ {
+ "description": "j - JSON.parse",
+ "id": 620,
+ "trigger": "j.jsonp"
+ },
+ {
+ "description": "j - JSON.stringify",
+ "id": 621,
+ "trigger": "j.jsons"
+ },
+ {
+ "description": "j - do while",
+ "id": 622,
+ "trigger": "j.dowhile"
+ },
+ {
+ "description": "j - forEach",
+ "id": 623,
+ "trigger": "j.fore"
+ },
+ {
+ "description": "j - for in",
+ "id": 624,
+ "trigger": "j.fori"
+ },
+ {
+ "description": "j - for",
+ "id": 625,
+ "trigger": "j.for"
+ },
+ {
+ "description": "j - while",
+ "id": 626,
+ "trigger": "j.while"
+ },
+ {
+ "description": "j - New",
+ "id": 627,
+ "trigger": "j.new"
+ },
+ {
+ "description": "j - Require",
+ "id": 628,
+ "trigger": "j.require"
+ },
+ {
+ "description": "j - setInterval",
+ "id": 629,
+ "trigger": "j.sinterval"
+ },
+ {
+ "description": "j - setTimeout",
+ "id": 630,
+ "trigger": "j.stimeout"
+ },
+ {
+ "description": "r - Brazilian CNPJ",
+ "id": 631,
+ "trigger": "r.bcpfcnpj"
+ },
+ {
+ "description": "r - Brazilian CPF/CNPJ",
+ "id": 632,
+ "trigger": "r.bcpfcnpj"
+ },
+ {
+ "description": "r - Brazilian CPF",
+ "id": 633,
+ "trigger": "r.bcpf"
+ },
+ {
+ "description": "r - Brazilian Phone",
+ "id": 634,
+ "trigger": "r.bphone"
+ },
+ {
+ "description": "r - E-mail",
+ "id": 635,
+ "trigger": "r.email"
+ },
+ {
+ "description": "sm - Action",
+ "id": 636,
+ "trigger": "sm.action"
+ },
+ {
+ "description": "sm - Organization",
+ "id": 637,
+ "trigger": "sm.org"
+ },
+ {
+ "description": "jsonld - Logotype",
+ "id": 638,
+ "trigger": "z.jsonld"
+ },
+ {
+ "description": "microdata - Organization",
+ "id": 639,
+ "trigger": "z.microdata"
+ },
+ {
+ "description": "microdata - Article",
+ "id": 640,
+ "trigger": "z.microdata"
+ },
+ {
+ "description": "microdata - Book",
+ "id": 641,
+ "trigger": "z.microdata"
+ },
+ {
+ "description": "microdata - Game",
+ "id": 642,
+ "trigger": "z.microdata"
+ },
+ {
+ "description": "microdata - WebPage",
+ "id": 643,
+ "trigger": "z.microdata"
+ },
+ {
+ "description": "rdfa - Breadcrumb",
+ "id": 644,
+ "trigger": "z.rdfa"
+ }
+]
\ No newline at end of file
diff --git a/snippets/comment/README.md b/snippets/comment/README.md
index 746051a..ce1cb66 100644
--- a/snippets/comment/README.md
+++ b/snippets/comment/README.md
@@ -1,6 +1,9 @@
# Comment Snippets
- [HTML](html/)
+ - Basic
+ - Block
+ - Conditional
- End Tag
- [CSS](css/)
- Basic
diff --git a/snippets/comment/css/README.md b/snippets/comment/css/README.md
index b53228f..15e54f4 100644
--- a/snippets/comment/css/README.md
+++ b/snippets/comment/css/README.md
@@ -1,14 +1,14 @@
# CSS Comments Snippets
-Prefix `xc*`
+Prefix `cc.*`
-### [xcbasic] basic
+### [cc.basic] basic
```css
/* ${1:Basic comment} */
```
-### [xcblock] block
+### [cc.block] block
```css
/**
@@ -17,7 +17,7 @@ Prefix `xc*`
*/
```
-### [xcsection] section
+### [cc.section] section
```css
/* ==========================================================================
@@ -25,7 +25,7 @@ Prefix `xc*`
========================================================================== */
```
-### [xcsubsection] sub-section
+### [cc.subsection] sub-section
```css
/* ${1:Sub-section}
diff --git a/snippets/comment/css/css-comment-basic.sublime-snippet b/snippets/comment/css/css-comment-basic.sublime-snippet
index b5a0787..46eee38 100644
--- a/snippets/comment/css/css-comment-basic.sublime-snippet
+++ b/snippets/comment/css/css-comment-basic.sublime-snippet
@@ -2,6 +2,6 @@