-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(shared): Disable menu options in CAS mode
- Loading branch information
Showing
3 changed files
with
162 additions
and
33 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
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,102 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | ||
<title>Create variables</title> | ||
<style type="text/css"> | ||
body { | ||
font-family: sans-serif; | ||
max-width: 800px; | ||
margin: auto; | ||
padding: 1em; | ||
line-height: 1.5; | ||
box-sizing: border-box; | ||
} | ||
body, .footnotes, code { font-size: .9em; } | ||
li li { font-size: .95em; } | ||
*, *:before, *:after { | ||
box-sizing: inherit; | ||
} | ||
pre, img { max-width: 100%; } | ||
pre, pre:hover { | ||
white-space: pre-wrap; | ||
word-break: break-all; | ||
} | ||
pre code { | ||
display: block; | ||
overflow-x: auto; | ||
} | ||
code { font-family: 'DejaVu Sans Mono', 'Droid Sans Mono', 'Lucida Console', Consolas, Monaco, monospace; } | ||
:not(pre) > code, code[class] { background-color: #F8F8F8; } | ||
code.language-undefined, pre > code:not([class]) { | ||
background-color: inherit; | ||
border: 1px solid #eee; | ||
} | ||
table { | ||
margin: auto; | ||
border-top: 1px solid #666; | ||
} | ||
table thead th { border-bottom: 1px solid #ddd; } | ||
th, td { padding: 5px; } | ||
thead, tfoot, tr:nth-child(even) { background: #eee; } | ||
blockquote { | ||
color: #666; | ||
margin: 0; | ||
padding-left: 1em; | ||
border-left: 0.5em solid #eee; | ||
} | ||
hr, .footnotes::before { border: 1px dashed #ddd; } | ||
.frontmatter { text-align: center; } | ||
#TOC .numbered li { list-style: none; } | ||
#TOC .numbered { padding-left: 0; } | ||
#TOC .numbered ul { padding-left: 1em; } | ||
table, .body h2 { border-bottom: 1px solid #666; } | ||
.body .appendix, .appendix ~ h2 { border-bottom-style: dashed; } | ||
.footnote-ref a::before { content: "["; } | ||
.footnote-ref a::after { content: "]"; } | ||
section.footnotes::before { | ||
content: ""; | ||
display: block; | ||
max-width: 20em; | ||
} | ||
|
||
@media print { | ||
body { | ||
font-size: 12pt; | ||
max-width: 100%; | ||
} | ||
tr, img { page-break-inside: avoid; } | ||
} | ||
@media only screen and (min-width: 992px) { | ||
pre { white-space: pre; } | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="include-before"> | ||
</div> | ||
<div class="frontmatter"> | ||
<div class="title"><h1>Create variables</h1></div> | ||
<div class="author"><h2></h2></div> | ||
<div class="date"><h3></h3></div> | ||
</div> | ||
<div class="body"> | ||
<h5 id="create-variables">Create variables</h5> | ||
New columns or variables can be generated with this calculator like module. A | ||
set of controls can be used to generate a function for a new column. | ||
- A dropdown menu can be used to select variables from the current data set. | ||
- Several operators can be used to construct a function. | ||
- Twelve buttons can be used to add numbers to the function or delete part of | ||
the function. | ||
- In a text filed the name of the new variable can be specified. The default | ||
name is "new.name". A number is added to the name in case more than one variable | ||
is generated. | ||
- Next to the text field, the formula is displayed. | ||
- The "Create Variable" button adds the new variable to the data. | ||
- A information message tells whether the function can produce a variable. | ||
</div> | ||
<div class="include-after"> | ||
</div> | ||
</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