You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result is browser (chrome Version 53.0.2785.143 m) does not display the desired doc page referenced by 'keyword'. instead browser displays generic API reference page.
Mention any other details that might be useful.
Proposed fix: change line 6 of packages/angular-cli/tasks/doc.ts
from (broken)
const searchUrl = https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword};
to (working)
const searchUrl = https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword}&query=${keyword};
Thanks! We'll be in touch soon.
The text was updated successfully, but these errors were encountered:
Good catch! Would you be willing to submit a PR to fix it? I'd review it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHubhttps://github.com//issues/2731#issuecomment-254343321, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AIJwNXcmxU1CG4Vf4mnY0O7XuCmozqdlks5q0-v8gaJpZM4KYAyu.
OS?
Windows 10 ver 1607
Versions.
angular-cli: 1.0.0-beta.17
node: 4.5.0
os: win32 x64
Repro steps.
from terminal type: 'ng doc keyword'
The log given by the failure.
result is browser (chrome Version 53.0.2785.143 m) does not display the desired doc page referenced by 'keyword'. instead browser displays generic API reference page.
Mention any other details that might be useful.
Proposed fix: change line 6 of packages/angular-cli/tasks/doc.ts
from (broken)
const searchUrl =
https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword}
;to (working)
const searchUrl =
https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword}&query=${keyword}
;The text was updated successfully, but these errors were encountered: