Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/help/Help.js

Issue 2773023004: DevTools: polish what's new - add date to title (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @return {!Help.ReleaseNote} 6 * @return {!Help.ReleaseNote}
7 */ 7 */
8 Help.latestReleaseNote = function() { 8 Help.latestReleaseNote = function() {
9 if (!Help._latestReleaseNote) { 9 if (!Help._latestReleaseNote) {
10 /** @type {!Help.ReleaseNote} */ 10 /** @type {!Help.ReleaseNote} */
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 /** 57 /**
58 * @const 58 * @const
59 * @type {string} 59 * @type {string}
60 */ 60 */
61 Help._releaseNoteViewId = 'release-note'; 61 Help._releaseNoteViewId = 'release-note';
62 62
63 /** @typedef {!{title: string, subtitle: string, link: string}} */ 63 /** @typedef {!{title: string, subtitle: string, link: string}} */
64 Help.ReleaseNoteHighlight; 64 Help.ReleaseNoteHighlight;
65 65
66 /** 66 /**
67 * @typedef {!{version: number, highlights: !Array<!Help.ReleaseNoteHighlight>, 67 * @typedef {!{version: number, date: string, highlights: !Array<!Help.ReleaseNo teHighlight>,
68 * link: string}} 68 * link: string}}
69 */ 69 */
70 Help.ReleaseNote; 70 Help.ReleaseNote;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698