當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript BrowserDomAdapter.query方法代碼示例

本文整理匯總了TypeScript中@angular/platform-browser/src/browser/browser_adapter.BrowserDomAdapter.query方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BrowserDomAdapter.query方法的具體用法?TypeScript BrowserDomAdapter.query怎麽用?TypeScript BrowserDomAdapter.query使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@angular/platform-browser/src/browser/browser_adapter.BrowserDomAdapter的用法示例。


在下文中一共展示了BrowserDomAdapter.query方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: autoInit

 static autoInit() {
   const specUrlAttributeName = 'spec-url';
   let redocEl = dom.query('redoc');
   if (!redocEl) return;
   if (dom.hasAttribute(redocEl, specUrlAttributeName)) {
     let url = dom.getAttribute(redocEl, specUrlAttributeName);
     Redoc.init(url);
   }
 }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:9,代碼來源:redoc.ts

示例2: hideLoadingAnimation

 static hideLoadingAnimation() {
   let redocEl = dom.query('redoc');
   if (!redocEl) return;
   dom.addClass(redocEl, 'loading-remove');
   setTimeout(() => {
     dom.removeClass(redocEl, 'loading-remove');
     dom.removeClass(redocEl, 'loading');
   }, 400);
 }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:9,代碼來源:redoc.ts

示例3: displayError

 static displayError(err) {
   let redocEl = dom.query('redoc');
   if (!redocEl) return;
   let heading = 'Oops... ReDoc failed to render this spec';
   let details = err.message;
   let erroHtml = `<div class="redoc-error">
     <h1>${heading}</h1>
     <div class='redoc-error-details'>${details}</div>`;
   redocEl.innerHTML = erroHtml;
 }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:10,代碼來源:redoc.ts

示例4: destroy

  static destroy() {
    let el = dom.query('redoc');
    let elClone;
    let parent;
    let nextSibling;
    if (el) {
      parent = el.parentElement;
      nextSibling = el.nextElementSibling;
    }

    elClone = el.cloneNode(false);

    if (Redoc.appRef) {
      Redoc.appRef.destroy();
      Redoc.appRef = null;

      // Redoc destroy removes host element, so need to restore it
      elClone.innerHTML = 'Loading...';
      if (parent) parent.insertBefore(elClone, nextSibling);
    }
  }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:21,代碼來源:redoc.ts

示例5: _normalizeOptions

  _normalizeOptions() {
    // modify scrollYOffset to always be a function
    if (!isFunction(this._options.scrollYOffset)) {
      if (isFinite(this._options.scrollYOffset)) {
        // if number specified create function that returns this value
        let numberOffset = parseFloat(this._options.scrollYOffset);
        this.options.scrollYOffset = () => numberOffset;
      } else {
        // if selector or node function that returns bottom offset of this node
        let el = this._options.scrollYOffset;
        if (!(el instanceof Node)) {
          el = this.dom.query(el);
        }
        if (!el) {
          this._options.scrollYOffset = () => 0;
        } else {
          this._options.scrollYOffset = () => el.offsetTop + el.offsetHeight;
        }
      }
    }

    if (isString(this._options.disableLazySchemas)) this._options.disableLazySchemas = true;
    if (isString(this._options.suppressWarnings)) this._options.suppressWarnings = true;
  }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:24,代碼來源:options.service.ts

示例6: openModal

 openModal(modalName) {
   let dialog = this._dom.query("ct-dialog." + this.metricShortName.toLowerCase() + "Modal");
   dialog.showModal();
 }
開發者ID:EdmundMai,項目名稱:client-dashboard-two,代碼行數:4,代碼來源:bubble.component.ts

示例7: showLoadingAnimation

 static showLoadingAnimation() {
   let elem = dom.query('redoc');
   dom.addClass(elem, 'loading');
 }
開發者ID:ajeetkanojia,項目名稱:ReDoc,代碼行數:4,代碼來源:redoc.ts


注:本文中的@angular/platform-browser/src/browser/browser_adapter.BrowserDomAdapter.query方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。