improve responsivness

This commit is contained in:
Eugenio Romano
2016-09-01 13:43:01 +01:00
parent 0ff549d0ac
commit 021f1adb5f
5 changed files with 57 additions and 15 deletions

View File

@@ -15,14 +15,15 @@
* limitations under the License.
*/
import { Component, Input } from '@angular/core';
import { Component, Input, ViewEncapsulation } from '@angular/core';
declare let __moduleName: string;
@Component({
moduleId: __moduleName,
selector: 'media-player',
templateUrl: './mediaPlayer.component.html',
styleUrls: ['./mediaPlayer.component.css']
styleUrls: ['./mediaPlayer.component.css'],
encapsulation: ViewEncapsulation.None
})
export class MediaPlayerComponent {