socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

lightbox.ts (191B)


      1 import {Injectable} from '@angular/core';
      2 
      3 @Injectable()
      4 export class Lightbox {
      5   public hide(el) {
      6     el.style.display = '';
      7   }
      8 
      9   public show(el) {
     10     el.style.display = 'block';
     11   }
     12 }