
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular-selectable
Advanced tools
An angular module for selecting things
This module is born from the need to select things in interfaces in a flexible
manner. It's not restricted to ng-click
or some other opinionated way of
marking items as selected. Just wire up your behaviour as you see fit.
Note: This is very much a work in progress and likely not to work.
npm install --save angular-selectable
Include the file in your html
<script src="node_modules/angular-selectable/angular-selectable.js"></script>
Add jbAngularSelectable
to your module's dependencies
angular.module('MyApp', ['jbAngularSelectable']);
Inject the Selectable
factory into your controllers and add expose it to your template
angular.module('MyApp')
.controller('myController', function($scope, Selectables) {
$scope.pets = ['dog', 'cat', 'gerbil', 'bird'];
$scope.selectables = new Selectables();
});
Use it in your templates
<ul>
<li ng-repeat="pet in pets"
ng-click="selectables.select(pet)">
{{ pet }} <span ng-if="selectables.isSelected(pet)">picked me</span>
</li>
</ul>
You can also try it out by serving up the root dir with your favourite static
file server (e.g. http-server
)
and heading to /example
(e.g. http://localhost:8080/example
with
http-server
)
MIT
FAQs
An angular module for selecting things
The npm package angular-selectable receives a total of 16 weekly downloads. As such, angular-selectable popularity was classified as not popular.
We found that angular-selectable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.