本文整理匯總了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);
});