From ebef35c28cc6bc965fd08d1ae13f2b31515fcd44 Mon Sep 17 00:00:00 2001 From: tophf Date: Thu, 7 Dec 2017 01:21:05 +0300 Subject: [PATCH] drop linter name from "see all rules" and make it a link --- edit/lint.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/edit/lint.js b/edit/lint.js index afc44211..f4fd8e64 100644 --- a/edit/lint.js +++ b/edit/lint.js @@ -445,12 +445,11 @@ function setupLinterPopup(config) { function makeFooter() { return $create('div', [ $create('p', [ - t('linterRulesLink') + ' ', $createLink( linter === 'stylelint' ? 'https://stylelint.io/user-guide/rules/' : 'https://github.com/CSSLint/csslint/wiki/Rules-by-ID', - linterTitle), + t('linterRulesLink')), linter === 'csslint' ? ' ' + t('linterCSSLintSettings') : '', ]), $create('button.save', {onclick: save, title: 'Ctrl-Enter'}, t('styleSaveLabel')),