Skip to content

Commit 11e0603

Browse files
committed
Merge branch 'master' into open933
2 parents a1331b7 + f732387 commit 11e0603

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"moment-duration-format": "^1.3.0",
1414
"requirejs": "~2.1.22",
1515
"text": "requirejs-text#^2.0.14",
16-
"es6-promise": "^3.0.2",
16+
"es6-promise": "^3.3.0",
1717
"screenfull": "^3.0.0",
1818
"node-uuid": "^1.4.7",
1919
"comma-separated-values": "^3.6.4",

docs/src/guide/index.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -933,15 +933,21 @@ Note that `templateUrl` is not supported for `containers`.
933933

934934
Controls provide options for the `mct-control` directive.
935935

936-
Six standard control types are included in the forms bundle:
936+
Ten standard control types are included in the forms bundle:
937937

938938
* `textfield`: An area to enter plain text.
939939
* `select`: A drop-down list of options.
940940
* `checkbox`: A box which may be checked/unchecked.
941941
* `color`: A color picker.
942942
* `button`: A button.
943943
* `datetime`: An input for UTC date/time entry; gives result as a UNIX
944-
timestamp, in milliseconds since start of 1970, UTC.
944+
timestamp, in milliseconds since start of 1970, UTC.
945+
* `composite`: A control parenting an array of other controls.
946+
* `menu-button`: A drop-down list of items supporting custom behavior
947+
on click.
948+
* `dialog-button`: A button which opens a dialog allowing a single property
949+
to be edited.
950+
* `radio`: A radio button.
945951

946952
New controls may be added as extensions of the controls category. Extensions of
947953
this category have two properties:

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ requirejs.config({
2727
"angular": "bower_components/angular/angular.min",
2828
"angular-route": "bower_components/angular-route/angular-route.min",
2929
"csv": "bower_components/comma-separated-values/csv.min",
30-
"es6-promise": "bower_components/es6-promise/promise.min",
3130
"EventEmitter": "bower_components/eventemitter3/index",
31+
"es6-promise": "bower_components/es6-promise/es6-promise.min",
3232
"html2canvas": "bower_components/html2canvas/build/html2canvas.min",
3333
"jsPDF": "bower_components/jspdf/dist/jspdf.min",
3434
"moment": "bower_components/moment/moment",

test-main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ requirejs.config({
5353
"angular": "bower_components/angular/angular.min",
5454
"angular-route": "bower_components/angular-route/angular-route.min",
5555
"csv": "bower_components/comma-separated-values/csv.min",
56-
"es6-promise": "bower_components/es6-promise/promise.min",
5756
"EventEmitter": "bower_components/eventemitter3/index",
57+
"es6-promise": "bower_components/es6-promise/es6-promise.min",
5858
"html2canvas": "bower_components/html2canvas/build/html2canvas.min",
5959
"jsPDF": "bower_components/jspdf/dist/jspdf.min",
6060
"moment": "bower_components/moment/moment",

0 commit comments

Comments
 (0)