Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
angular-pagepiling.js
Advanced tools
A simple pagePiling.js directive that allows the use of pagePiling.js within an angular app. There are several issues when using the the vanilla jquery version with an angular application that uses an internal router for displaying pages, and this repo aims to solve them.
Install via Download,
Bower
bower install --save angular-pagepiling.js
or NPM
npm install --save angular-pagepiling.js
====
Make sure to include both this directive and pagePiling.js. This package isn't a replacement.
index.html
<!-- Included dependancies:
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="vendor/pagepiling.js/jquery.pagePiling.min.js"></script>
-->
<script src="vendor/angular-fullpage.js/angular-pagepiling.min.js"></script>
In your angular modules, include the Directive
app.module.js
angular
.module('app', [
'pagePiling.js'
...
]);
Add your standard pagePiling.js structure, along with the attribute full-page
someView.html
<div page-piling>
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
</div>
If you'd like to add some options to the pagePiling, just include them in an object in your controller, and add the options attribute to your html.
someView.html
function MainController(){
var _this = this;
_this.mainOptions = {
sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE'],
navigation: true,
navigationPosition: 'right'
scrollingSpeed: 1000
}
}
someView.html
<div page-piling options="vm.someOptions">
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
</div>
FAQs
A simple angular directive for pagePiling.js
The npm package angular-pagepiling.js receives a total of 3 weekly downloads. As such, angular-pagepiling.js popularity was classified as not popular.
We found that angular-pagepiling.js 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.