本文整理汇总了TypeScript中@phosphor/widgets.Widget.detach方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Widget.detach方法的具体用法?TypeScript Widget.detach怎么用?TypeScript Widget.detach使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@phosphor/widgets.Widget
的用法示例。
在下文中一共展示了Widget.detach方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: expect
return w.renderModel(model).then(() => {
Widget.attach(w, document.body);
let node = document.getElementById('Title-third-level');
expect(node.localName).to.be('h3');
let anchor = node.firstChild.nextSibling as HTMLAnchorElement;
expect(anchor.href).to.contain('#Title-third-level');
expect(anchor.target).to.be('_self');
expect(anchor.className).to.contain('jp-InternalAnchorLink');
expect(anchor.textContent).to.be('¶');
Widget.detach(w);
});
示例2: expect
let loop = () => {
if ((widget as any)._rendered) {
Widget.attach(widget, document.body);
let node = document.getElementById('Title-third-level');
expect(node.localName).to.be('h3');
let anchor = node.firstChild.nextSibling as HTMLAnchorElement;
expect(anchor.href).to.contain('#Title-third-level');
expect(anchor.target).to.be('_self');
expect(anchor.className).to.contain('jp-InternalAnchorLink');
expect(anchor.textContent).to.be('¶');
Widget.detach(widget);
done();
return;
}
setTimeout(loop, 100);
};
示例3: it
it('should add header anchors', async () => {
const source = require('../../../examples/filebrowser/sample.md') as string;
const f = markdownRendererFactory;
const mimeType = 'text/markdown';
const model = createModel(mimeType, source);
const w = f.createRenderer({ mimeType, ...defaultOptions });
await w.renderModel(model);
Widget.attach(w, document.body);
const node = document.getElementById('Title-third-level');
expect(node.localName).to.equal('h3');
const anchor = node.firstChild.nextSibling as HTMLAnchorElement;
expect(anchor.href).to.contain('#Title-third-level');
expect(anchor.target).to.equal('_self');
expect(anchor.className).to.contain('jp-InternalAnchorLink');
expect(anchor.textContent).to.equal('¶');
Widget.detach(w);
});