本文整理汇总了TypeScript中angular2/platform/browser.BrowserDomAdapter类的典型用法代码示例。如果您正苦于以下问题:TypeScript BrowserDomAdapter类的具体用法?TypeScript BrowserDomAdapter怎么用?TypeScript BrowserDomAdapter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BrowserDomAdapter类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor()
{
this._dom = new BrowserDomAdapter();
this._body = this._dom.query("body");
this._injector = angular.element(this._body).injector();
this._globalScope = angular.element(this._body).scope();
}
示例2: Movie
import {provide} from "angular2/core";
import {BrowserDomAdapter} from 'angular2/platform/browser';
import {it, describe, expect, inject, beforeEachProviders,
beforeEach, TestComponentBuilder, injectAsync} from "angular2/testing";
import {Observable} from "rxjs";
import {Movie} from "../app/models/Movie";
import {MovieList} from "../app/list/movie-list";
import {MovieService} from "../app/services/MovieService";
import {HTTP_PROVIDERS, Http} from "angular2/http";
import {Router} from "angular2/router";
BrowserDomAdapter.makeCurrent();
class FakeService extends MovieService {
constructor() {
super(null);
}
getAll() {
let movies = [[
new Movie(1, "", 1, 1),
new Movie(1, "", 1, 1),
new Movie(1, "", 1, 1)
]];
return Observable.from(movies);
}
}
describe("The MovieList component", () => {
示例3: affichageDate
affichageDate(value) {
if (value == "limite") {
var elem: any = this.dom.query('#choixDate');
this.dom.setAttribute(elem, "style", "display:true;");
} else {
var elem: any = this.dom.query('#choixDate');
this.dom.setAttribute(elem, "style", "display:none;");
}
}
示例4: meta
protected meta (name: string): HTMLElement {
let meta: HTMLElement;
meta = DOM.query(`meta[${this.attribute}='${name}]'`);
if (meta === null) {
meta = DOM.createElement('meta');
meta.setAttribute(this.attribute, name);
this.head.appendChild(meta);
}
return meta;
}
示例5:
show (type, content) {
var notification = this._dom.createElement('div');
notification.innerHTML = content;
notification.classList.add('df-notification', type);
var notificationEl = this._dom.query('body').appendChild(notification);
setTimeout(function(argument) {
notificationEl.remove();
}, 4000)
}
示例6: afficherMotDePasse
afficherMotDePasse(id: number) {
let motDePasse: string = this.utilisateurService.getUserById(id)["mdp"];
var elem: any = this.dom.query('#affiche' + id);
if (this.dom.getAttribute(elem, "class") == "no") {
this.dom.setAttribute(elem, "class", "yes");
this.dom.setAttribute(this.dom.query("#eyeLogo" + id), "class", "fa fa-eye-slash");
this.dom.setText(elem, motDePasse);
} else {
this.dom.setAttribute(elem, "class", "no");
this.dom.setAttribute(this.dom.query("#eyeLogo" + id), "class", "fa fa-eye");
this.dom.setText(elem, "**********");
}
}
示例7:
ngAfterViewInit() {
this.DOM.on(this.el, this.analyticsOn, (event: any) => this.eventTrack(event))
}
示例8: constructor
constructor () {
this.head = DOM.query('head');
}
示例9: monCompteColor
monCompteColor(colorMenu: string) {
this.dom.setAttribute(this.dom.query("#cssmenu"), "class", colorMenu);
let link = ['MonCompte', { colorMenu: colorMenu }];
this._router.navigate(link);
return;
}
示例10: setTimeout
setTimeout( () =>
{
this._dom.setStyle( this._elementRef.nativeElement, 'opacity', '1' );
}, 100 );