Skip to content

Commit

Permalink
Remove old import.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed Feb 11, 2021
1 parent 5720ed6 commit 93f705a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/

import 'vs/css!./gettingStarted';
import 'vs/workbench/contrib/welcome/gettingStarted/browser/vs_code_editor_getting_started';
import { localize } from 'vs/nls';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { EditorInput, EditorOptions, IEditorInputFactory, IEditorOpenContext } from 'vs/workbench/common/editor';
Expand Down Expand Up @@ -293,15 +292,15 @@ export class GettingStartedPage extends EditorPane {
category.content.type === 'items' ?
$('.category-description-container', {},
$('h3.category-title', {}, category.title),
$('.category-description.description', {}, category.description),
$('.category-description.description', { 'aria-label': category.description + ' ' + localize('pressEnterToSelect', "Press Enter to Select") }, category.description),
$('.category-progress', { 'x-data-category-id': category.id, },
$('.message'),
$('.progress-bar-outer', {},
$('.progress-bar-inner'))))
:
$('.category-description-container', {},
$('h3.category-title', {}, category.title),
$('.category-description.description', {}, category.description));
$('.category-description.description', { 'aria-label': category.description + ' ' + localize('pressEnterToSelect', "Press Enter to Select") }, category.description));

return $('button.getting-started-category',
{ 'x-dispatch': 'selectCategory:' + category.id, },
Expand Down

0 comments on commit 93f705a

Please sign in to comment.