-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.1.2: Wraps IFRAME access in a try/catch to avoid cross-origin exce…
…ptions Adds mocha_phantomjs tests Linted with ESLint Split test/test.html into test-blocker.html and test-no-blocker.html Building .js.map file via UglifyJS
- Loading branch information
Showing
23 changed files
with
372 additions
and
2,489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"directory": "test/vendor", | ||
"color" : false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"rules": { | ||
// enabled over default | ||
"valid-jsdoc": [1, { | ||
"requireReturn": false, | ||
"prefer": { | ||
"return": "returns" | ||
} | ||
}], | ||
"guard-for-in": 2, | ||
"no-div-regex": 2, | ||
"no-else-return": 2, | ||
"no-eq-null": 2, | ||
"no-floating-decimal": 2, | ||
"no-self-compare": 2, | ||
"no-void": 2, | ||
"radix": 2, | ||
"wrap-iife": 2, | ||
"no-mixed-requires": 2, | ||
"no-new-require": 2, | ||
"no-path-concat": 2, | ||
"brace-style": [2, "1tbs", { "allowSingleLine": false }], | ||
"comma-style": [2, "last"], | ||
"consistent-this": [2, "that"], | ||
"no-inline-comments": 2, | ||
"no-lonely-if": 2, | ||
"no-multiple-empty-lines": [1, {"max": 1}], | ||
"no-nested-ternary": 2, | ||
"space-after-function-name": [2, "never"], | ||
"space-after-keywords": 1, | ||
"space-before-blocks": 1, | ||
"space-in-brackets": 1, | ||
"space-in-parens": 1, | ||
"space-unary-ops": 1, | ||
"spaced-line-comment": 1, | ||
"max-len": [1, 120, 4], | ||
|
||
// | ||
// Disabled | ||
// | ||
|
||
// disabled for use of _jQuery | ||
"no-underscore-dangle": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ | |
.project | ||
.settings/ | ||
npm-debug.log | ||
/eslint.xml | ||
/test/*.tap | ||
/test/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- "0.12" | ||
- "0.11" | ||
- "0.10" | ||
before_install: npm install -g grunt-cli | ||
before_install: | ||
- npm install -g grunt-cli bower | ||
- bower install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.