Daniel
Daniel

Reputation: 1282

Angular Material get latest version | md-chips : read only, removable

For my applications I need to use the <chips> directive from Angular-Material.

The chips need to be read only (no input) but still removable. This feature is not implemented in the latest released version : see https://material.angularjs.org/1.1.0-rc.5/demo/chips

But it is implemented on the MASTER version : see https://material.angularjs.org/HEAD/demo/chips

The feature I look for : enter image description here Is there any easy or right way to get this version in my app ?

I know this question might be simple and I apologize for that, I just never had this problem before so I wanted to make sure I am doing the right thing !

Thank you in advance.

Upvotes: 2

Views: 337

Answers (1)

camden_kid
camden_kid

Reputation: 12813

As per the installation documents:

bower install 'angular-material#master'

I did this and then did a search for the string "removable" in angular-material.js and it is found in the code for MdChipsCtrl.

Upvotes: 1

Related Questions