
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
ovh-angular-jsplumb
Advanced tools
Allow to draw links between elements using [jsplumb toolkit](http://www.jsplumb.org/).
Allow to draw links between elements using jsplumb toolkit.
If you are using grunt and grunt wiredep, overrides the jsplumb dependency like this :
...
wiredep: {
overrides : {
jsplumb: {
main : 'dist/js/jquery.jsPlumb-1.7.3-min.js'
},
'jquery-ui' : {
main : [
'ui/minified/core.min.js',
'ui/minified/widget.min.js',
'ui/minified/mouse.min.js',
'ui/minified/draggable.min.js',
'ui/minified/droppable.min.js'
]
}
}
}
...
For jqueryUI, we only need draggable and droppable functionnalities (and the few core functionnalities). So we can load only these files.
First, make sure jsplumb
is ready by calling jsPlumbService.jsplumbInit
method :
angular.module('app').controller('myAppCtrl', function ($scope, jsPlumbService) {
$scope.jsplumbReady = false;
jsPlumbService.jsplumbInit()['finally'](function () {
$scope.jsplumbReady = true;
});
});
Create an instance of ovh-angular-jsplumb
with the jsplumbInstance
directive :
<div data-ng-if="jsplumbReady"
data-jsplumb-instance>
...
</div>
bower install ovh-angular-jsplumb --save
npm install ovh-angular-jsplumb --save
git clone https://github.com/ovh-ux/ovh-angular-jsplumb.git
cd ovh-angular-jsplumb
npm install
bower install
You've developed a new cool feature? Fixed an annoying bug? We'd be happy to hear from you!
Have a look in CONTRIBUTING.md
npm test
grunt ngdocs
See https://github.com/ovh-ux/ovh-angular-jsplumb/blob/master/LICENSE
Then include ovh-angular-jsplumb.js in your HTML with it's dependencies (Note : As mentionned above, you can only load jquery ui dependency files) :
<script src="jquery.js">
<script src="jquery-ui.js">
<script src="jsplumb.js">
<script src="angular.js">
<script src="ovh-angular-jsplumb.js">
And then load the module in your application by adding it as a dependent module:
angular.module('app', ['ovh-angular-jsplumb']);
FAQs
Allow to draw links between elements using [jsplumb toolkit](http://www.jsplumb.org/).
We found that ovh-angular-jsplumb 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.