59naga / jaggy

Keep the sharpness for Pixel-Art.
12 stars 2 forks source link

Doesn't work app.directive('svg') #7

Closed 59naga closed 9 years ago

59naga commented 9 years ago
var app=angular.module('myApp',['jaggy']);
app.directive('svg',function(){
  return {
    restrict:'E',
    link:function(){
      console.log('This not edge...');
    },
  };
});
<img src="whatever.png" jaggy><!-- rendered <svg>-->

The above does not work.