Skip to content
This repository has been archived by the owner on Apr 30, 2018. It is now read-only.

Commit

Permalink
v6.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
formly-bot committed Oct 1, 2015
2 parents 97d1dde + 1b48307 commit adf9054
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ _Example radio field_
##### groupProp (string, optional)
>`groupProp` is what is used to group the options
##### optionsAttr (string, optional)
>`optionsAttr` is what is used as the attribute ngOptions will be applied to. Defaults to `ng-options`
##### ngOptions (string, optional)
>If provided, this is used instead of the default `ng-options` giving you full control (and rendering the other options uncessisary.
Expand Down
7 changes: 4 additions & 3 deletions dist/angular-formly-templates-bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! angular-formly-templates-bootstrap version 6.1.4 built with ♥ by Astrism <[email protected]>, Kent C. Dodds <[email protected]> (ó ì_í)=óò=(ì_í ò)
//! angular-formly-templates-bootstrap version 6.1.5 built with ♥ by Astrism <[email protected]>, Kent C. Dodds <[email protected]> (ó ì_í)=óò=(ì_í ò)

(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -77,7 +77,7 @@ return /******/ (function(modules) { // webpackBootstrap
prefix: 'angular-formly-bootstrap'
}
}));
ngModule.constant('formlyBootstrapVersion', ("6.1.4"));
ngModule.constant('formlyBootstrapVersion', ("6.1.5"));

__webpack_require__(6)(ngModule);
__webpack_require__(9)(ngModule);
Expand Down Expand Up @@ -433,14 +433,15 @@ return /******/ (function(modules) { // webpackBootstrap
var ngOptions = options.templateOptions.ngOptions || 'option[to.valueProp || \'value\'] as option[to.labelProp || \'name\'] group by option[to.groupProp || \'group\'] for option in to.options';
return {
ngModelAttrs: _defineProperty({}, ngOptions, {
value: 'ng-options'
value: options.templateOptions.optionsAttr || 'ng-options'
})
};
},
apiCheck: function apiCheck(check) {
return {
templateOptions: {
options: check.arrayOf(check.object),
optionsAttr: check.string.optional,
labelProp: check.string.optional,
valueProp: check.string.optional,
groupProp: check.string.optional
Expand Down
Loading

0 comments on commit adf9054

Please sign in to comment.