Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Related to issue #479. #500

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### v4.0.0
### v4.0.1
##### Added / Updated
- You can now customize output-model properties that you need, instead of having all data.
- <a href="https://github.com/isteven/angular-multi-select/issues/201">#201</a> (and other related issues) DOM bug is now fixed.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Doesn't require jQuery and works well with other Javascript libraries.
Go to http://isteven.github.io/angular-multi-select

### Current Version
4.0.0
4.0.1

### Change Log
See <a href="https://github.com/isteven/angular-multi-select/blob/master/CHANGELOG.md">CHANGELOG.md</a>.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "isteven-angular-multiselect",
"version" : "v4.0.0",
"version" : "v4.0.1",
"main" : [
"isteven-multi-select.js",
"isteven-multi-select.css"
Expand Down
6 changes: 3 additions & 3 deletions doc/js/libs/isteven-multi-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Creates a dropdown-like button with checkboxes.
*
* Project started on: Tue, 14 Jan 2014 - 5:18:02 PM
* Current version: 4.0.0
* Current version: 4.0.1
*
* Released under the MIT License
* --------------------------------------------------------------------------------
Expand Down Expand Up @@ -196,7 +196,7 @@ angular.module( 'isteven-multi-select', ['ng'] ).directive( 'istevenMultiSelect'
$scope.getFormElements();

// Callback: on filter change
if ( $scope.inputLabel.labelFilter.length > vMinSearchLength ) {
if ( $scope.inputLabel.labelFilter.length >= vMinSearchLength ) {

var filterObj = [];

Expand Down Expand Up @@ -474,7 +474,7 @@ angular.module( 'isteven-multi-select', ['ng'] ).directive( 'istevenMultiSelect'
outputProps = [],
tempObj = {};

// v4.0.0
// v4.0.1
if ( typeof attrs.outputProperties !== 'undefined' ) {
outputProps = attrs.outputProperties.split(' ');
angular.forEach( $scope.inputModel, function( value, key ) {
Expand Down
2 changes: 1 addition & 1 deletion doc/views/configs-options.htm
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ <h5>on-search-change</h5>
<span class="inlineTitle">Example</span>: <code>&lt;div isteven-multi-select ... on-filter-change="funcFilterChange( data )"&gt;&lt;/div&gt;</code>.
</p>

<h5>output-properties</h5> <span class="label label-warning">New! v4.0.0</span>
<h5>output-properties</h5> <span class="label label-warning">New! v4.0.1</span>
<p>
Set what model properties you want to have in your output-model
</p>
Expand Down
6 changes: 3 additions & 3 deletions isteven-multi-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Creates a dropdown-like button with checkboxes.
*
* Project started on: Tue, 14 Jan 2014 - 5:18:02 PM
* Current version: 4.0.0
* Current version: 4.0.1
*
* Released under the MIT License
* --------------------------------------------------------------------------------
Expand Down Expand Up @@ -196,7 +196,7 @@ angular.module( 'isteven-multi-select', ['ng'] ).directive( 'istevenMultiSelect'
$scope.getFormElements();

// Callback: on filter change
if ( $scope.inputLabel.labelFilter.length > vMinSearchLength ) {
if ( $scope.inputLabel.labelFilter.length >= vMinSearchLength ) {

var filterObj = [];

Expand Down Expand Up @@ -474,7 +474,7 @@ angular.module( 'isteven-multi-select', ['ng'] ).directive( 'istevenMultiSelect'
outputProps = [],
tempObj = {};

// v4.0.0
// v4.0.1
if ( typeof attrs.outputProperties !== 'undefined' ) {
outputProps = attrs.outputProperties.split(' ');
angular.forEach( $scope.inputModel, function( value, key ) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isteven-angular-multiselect",
"version": "v4.0.0",
"version": "v4.0.1",
"description": "A multi select dropdown directive for AngularJS",
"main": [
"isteven-multi-select.js",
Expand Down