
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
@opengovsg/angular-legacy-sortablejs-maintained
Advanced tools
Fork of Angular (legacy) directive for SortableJS.
Angular 1 module that integrates with Sortable.js
npm install angular-legacy-sortablejs-maintained
yarn add angular-legacy-sortablejs-maintained
Don't install the old angular-legacy-sortablejs package as thats not maintained
angular.module('exampleApp', ['ng-sortable'])
.component('dragAndDropExample', {
template: `<ul ng-sortable>
<li ng-repeat="item in ['burgers', 'chips', 'hotdog']">
{$ item $}
</li>
</ul>`,
})
You can pass a Config obj to ng-sortable
and it will pass this onto the created sortable object. The available options can be found here
angular.module('exampleApp', ['ng-sortable'])
.component('dragAndDropExample', {
template: `
<ul ng-sortable=$ctrl.sortableConf>
<li ng-repeat="item in ['burgers', 'chips', 'hotdog']">
{$ item $}
</li>
</ul>`,
controller: class ExampleController {
constructor() {
this.sortableConf = {
animation: 350,
chosenClass: 'sortable-chosen',
handle: '.grab-handle',
forceFallback: true,
};
}
},
});
Example showing how use the handle option
angular.module('exampleApp', ['ng-sortable'])
.component('dragAndDropExample', {
template: `
<ul ng-sortable=$ctrl.sortableConf>
<li ng-repeat="item in ['burgers', 'chips', 'hotdog']" draggable="false">
<span class="grab-handle">Drag Header</span>
<div>{$ item $}</div>
</li>
</ul>`,
controller: class ExampleController {
constructor() {
this.sortableConf = {
animation: 350,
chosenClass: 'sortable-chosen',
handle: '.grab-handle',
forceFallback: true,
};
}
},
});
There are selenium based tests that can be used to check for regressions
Navigate to the repo directory in a terminal and run
yarn
To run the e2e tests run each of these commands in a separate terminal window
npm run serve:example
npm run webdriver
npm run test:e2e
FAQs
Fork of Angular (legacy) directive for SortableJS.
We found that @opengovsg/angular-legacy-sortablejs-maintained demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.