1.2.2 • Published 8 years ago

angular-show-on-hover v1.2.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

What

This Angular module provides simple directive that allows element to control visibility of child element based on element mouse hover state. It doesn't rely on Angular builtin directives so digest cycle won't be trigger at all.

demo

Install

$ npm install --save angular-show-on-hover

Usage

angular
  .module('app', [
    require('angular-show-on-hover')
  ])
  <div show-on-hover="span"><span></span></div>