New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

angularowlcaraousel

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angularowlcaraousel

Angular Owl Carousel

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

This directive allows you to back a Owl Carousel with data from an Angular controller.

For use with Owl Carousel 2

Usage

Javascript:

// Define app module
angular
    .module('myApp', ['angular-owl-carousel']);

// Create controller
angular
    .module('myApp')
    .controller('MyController', MyController);

function MyController() {
    this.items = ['item1', 'item2'];
}

HTML:

<div ng-controller="MyController">
    <div owl-carousel="items">
        <div class="item">{{ item }}</div>
    </div>
</div>

Note: There is a bug in Owl on the master branch that breaks this directive. I've created a branch with the fix here:

https://github.com/jonahbron/OwlCarousel2

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

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.

Install

Related posts