-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from mendix/develop
Updated framework to 2.0.0
- Loading branch information
Showing
147 changed files
with
17,610 additions
and
728 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,11 @@ | ||
{ | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"proseWrap": "always", | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"trailingComma": "all", | ||
"bracketSpacing": true, | ||
"semi": true, | ||
"arrowParens": "avoid" | ||
} |
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,32 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"indentation": 4, | ||
"string-quotes": "single", | ||
"no-duplicate-selectors": true, | ||
"color-hex-case": "upper", | ||
"color-hex-length": "short", | ||
"selector-combinator-space-after": "always", | ||
"selector-attribute-operator-space-before": "always", | ||
"selector-attribute-operator-space-after": "always", | ||
"selector-attribute-brackets-space-inside": "always", | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-colon-space-before": "never", | ||
"declaration-colon-space-after": "always", | ||
"number-leading-zero": "never", | ||
"function-url-quotes": "always", | ||
"font-family-name-quotes": "always-unless-keyword", | ||
"comment-whitespace-inside": "always", | ||
"comment-empty-line-before": "always", | ||
"rule-empty-line-before": "always-multi-line", | ||
"selector-pseudo-element-colon-notation": "single", | ||
"media-feature-range-operator-space-after": "always", | ||
"media-feature-colon-space-after": "always", | ||
"no-descending-specificity": null, | ||
"declaration-colon-newline-after": null, | ||
"value-list-comma-newline-after": null, | ||
"at-rule-no-unknown": [true, { | ||
"ignoreAtRules": ["function", "if", "each", "include", "mixin"] | ||
}] | ||
} | ||
} |
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 @@ | ||
{} |
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 +1,7 @@ | ||
{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","styles/css/lib/lib.css","styles/css/custom/custom.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"{{cachebust}}"} | ||
{ | ||
"files": { | ||
"css": ["styles/web/css/main.css"], | ||
"js": ["mxclientsystem/mxui/mxui.js"] | ||
}, | ||
"cachebust": "{{cachebust}}" | ||
} |
Empty file.
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,27 +1,25 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Mendix - Phone preview</title> | ||
<link rel="stylesheet" type="text/css" href="styles/web/css/main.css?{{ cachebust }}" /> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Mendix - Phone preview</title> | ||
<link rel="stylesheet" type="text/css" href="styles/css/lib/lib.css?{{cachebust}}"> | ||
</head> | ||
|
||
<body> | ||
<div class="content"> | ||
<div class="devicephone"> | ||
<iframe id="frame" class="deviceframe"></iframe> | ||
<div class="devicedisclaimer"> | ||
This is not a simulator but just a resized view surrounded with an image to give an impression of what the app might look like on a phone. | ||
<body> | ||
<div class="content"> | ||
<div class="devicephone"> | ||
<iframe id="frame" class="deviceframe"></iframe> | ||
<div class="devicedisclaimer"> | ||
This is not a simulator but just a resized view surrounded with an image to give an impression of what the app might look like on a phone. | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
// Firefox does not add a history item if the page is not loaded | ||
// from the cache, and the src is set as attribute on the iframe | ||
document.getElementById("frame").src = "index.html" + window.location.search + window.location.hash; | ||
</script> | ||
</body> | ||
|
||
</html> | ||
<script type="text/javascript"> | ||
// Firefox does not add a history item if the page is not loaded | ||
// from the cache, and the src is set as attribute on the iframe | ||
document.getElementById('frame').src = 'index.html' + window.location.search + window.location.hash; | ||
</script> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Mendix - Tablet preview</title> | ||
<link rel="stylesheet" type="text/css" href="styles/web/css/main.css?{{ cachebust }}" /> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Mendix - Tablet preview</title> | ||
<link rel="stylesheet" type="text/css" href="styles/css/lib/lib.css?{{cachebust}}"> | ||
</head> | ||
|
||
<body> | ||
<div class="content"> | ||
<div class="devicetablet"> | ||
<iframe id="frame" class="deviceframe"></iframe> | ||
<div class="devicedisclaimer"> | ||
This is not a simulator but just a resized view surrounded with an image to give an impression of what the app might look like on a tablet. | ||
<body> | ||
<div class="content"> | ||
<div class="devicetablet"> | ||
<iframe id="frame" class="deviceframe"></iframe> | ||
<div class="devicedisclaimer"> | ||
This is not a simulator but just a resized view surrounded with an image to give an impression of what the app might look like on a tablet. | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
// Firefox does not add a history item if the page is not loaded | ||
// from the cache, and the src is set as attribute on the iframe | ||
document.getElementById("frame").src = "index.html" + window.location.search + window.location.hash; | ||
</script> | ||
</body> | ||
|
||
</html> | ||
<script type="text/javascript"> | ||
// Firefox does not add a history item if the page is not loaded | ||
// from the cache, and the src is set as attribute on the iframe | ||
document.getElementById('frame').src = 'index.html' + window.location.search + window.location.hash; | ||
</script> | ||
</body> | ||
</html> |
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
Oops, something went wrong.