remove mdl from social component (#2219)

This commit is contained in:
Eugenio Romano
2017-08-15 13:39:00 +01:00
committed by Mario Romano
parent a742e033d1
commit 8f5105d33f
10 changed files with 135 additions and 89 deletions

View File

@@ -15,14 +15,15 @@
* limitations under the License.
*/
import { Component, EventEmitter, Input, OnChanges, Output } from '@angular/core';
import { Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation } from '@angular/core';
import { RatingService } from './../services/rating.service';
@Component({
selector: 'adf-like',
styleUrls: ['./like.component.css'],
styleUrls: ['./like.component.scss'],
templateUrl: './like.component.html',
providers: [RatingService]
providers: [RatingService],
encapsulation: ViewEncapsulation.None
})
export class LikeComponent implements OnChanges {