Skip to content

Commit

Permalink
Add create popup table operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Rodriguez committed Mar 15, 2017
1 parent a5b7b84 commit 7945a34
Show file tree
Hide file tree
Showing 15 changed files with 769 additions and 0 deletions.
119 changes: 119 additions & 0 deletions create-table-operator/.eslintrc
@@ -0,0 +1,119 @@
{
"env": {
"browser": true
},
"globals": {
"MashupPlatform": false,
"Promise": false,
"WeakMap": false
},
"rules": {
"indent": [
2,
4,
{
"SwitchCase": 0
}
],
"linebreak-style": [
2,
"unix"
],
"guard-for-in": 0,
"no-alert": 2,
"no-console": 2,
"no-debugger": 2,
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"new-cap": [
2,
{
"newIsCap": true,
"capIsNew": true,
"properties": true
}
],
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"no-eq-null": 0,
"no-trailing-spaces": 2,
"no-mixed-spaces-and-tabs": 2,
"no-undef": 2,
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"caughtErrors": "none"
}
],
"func-call-spacing": [
2,
"never"
],
"func-style": [
2,
"expression"
],
"space-unary-ops": [
2,
{
"words": false,
"nonwords": false
}
],
"array-bracket-spacing": [
2,
"never",
{
"singleValue": false
}
],
"space-in-parens": [
2,
"never"
],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"dot-notation": 2,
"spaced-comment": [
2,
"always"
],
"space-before-blocks": [
2,
"always"
],
"space-infix-ops": 2,
"keyword-spacing": [
2,
{}
],
"space-before-function-paren": [
2,
{"anonymous": "always", "named": "never", "asyncArrow": "always"}
],
"strict": [
"error",
"function"
],
"curly": [
2,
"all"
]
}
}
120 changes: 120 additions & 0 deletions create-table-operator/.eslintrc-jasmine
@@ -0,0 +1,120 @@
{
"env": {
"browser": true,
"jasmine": true
},
"globals": {
"MashupPlatform": false,
"Promise": false,
"WeakMap": false
},
"rules": {
"indent": [
2,
4,
{
"SwitchCase": 0
}
],
"linebreak-style": [
2,
"unix"
],
"guard-for-in": 0,
"no-alert": 2,
"no-console": 2,
"no-debugger": 2,
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"new-cap": [
2,
{
"newIsCap": true,
"capIsNew": true,
"properties": true
}
],
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"no-eq-null": 0,
"no-trailing-spaces": 2,
"no-mixed-spaces-and-tabs": 2,
"no-undef": 2,
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"caughtErrors": "none"
}
],
"func-call-spacing": [
2,
"never"
],
"func-style": [
2,
"expression"
],
"space-unary-ops": [
2,
{
"words": false,
"nonwords": false
}
],
"array-bracket-spacing": [
2,
"never",
{
"singleValue": false
}
],
"space-in-parens": [
2,
"never"
],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"dot-notation": 2,
"spaced-comment": [
2,
"always"
],
"space-before-blocks": [
2,
"always"
],
"space-infix-ops": 2,
"keyword-spacing": [
2,
{}
],
"space-before-function-paren": [
2,
{"anonymous": "always", "named": "never", "asyncArrow": "always"}
],
"strict": [
"error",
"function"
],
"curly": [
2,
"all"
]
}
}
118 changes: 118 additions & 0 deletions create-table-operator/.eslintrc-node
@@ -0,0 +1,118 @@
{
"env": {
"node": true
},
"globals": {
"Promise": false,
"WeakMap": false
},
"rules": {
"indent": [
2,
4,
{
"SwitchCase": 0
}
],
"linebreak-style": [
2,
"unix"
],
"guard-for-in": 0,
"no-alert": 2,
"no-console": 2,
"no-debugger": 2,
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"new-cap": [
2,
{
"newIsCap": true,
"capIsNew": true,
"properties": true
}
],
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"no-eq-null": 0,
"no-trailing-spaces": 2,
"no-mixed-spaces-and-tabs": 2,
"no-undef": 2,
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"caughtErrors": "none"
}
],
"func-call-spacing": [
2,
"never"
],
"func-style": [
2,
"expression"
],
"space-unary-ops": [
2,
{
"words": false,
"nonwords": false
}
],
"array-bracket-spacing": [
2,
"never",
{
"singleValue": false
}
],
"space-in-parens": [
2,
"never"
],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"dot-notation": 2,
"spaced-comment": [
2,
"always"
],
"space-before-blocks": [
2,
"always"
],
"space-infix-ops": 2,
"keyword-spacing": [
2,
{}
],
"space-before-function-paren": [
2,
{"anonymous": "always", "named": "never", "asyncArrow": "always"}
],
"strict": [
"error",
"function"
],
"curly": [
2,
"all"
]
}
}
8 changes: 8 additions & 0 deletions create-table-operator/.gitignore
@@ -0,0 +1,8 @@
bower_components/
node_modules/
src/bower_components/
dist/
build/
_SpecRunner.html
src/js/.tern-port
.DS_Store

0 comments on commit 7945a34

Please sign in to comment.