style url as regex instead of plain starts with

This commit is contained in:
alexadam 2017-07-10 22:36:16 +03:00
parent 84dfab759f
commit 126ce6f039
3 changed files with 26 additions and 12 deletions

View file

@ -115,7 +115,7 @@ function showEditor() {
urlLabelHolder.className = 'cssEditor-field-label-holder';
var urlLabel = document.createElement('label');
urlLabel.className = 'cssEditor-field-label';
urlLabel.innerText = 'URL Starts With';
urlLabel.innerText = 'URL Regex'; // TODO addd link to regex tutorial
urlLabelHolder.appendChild(urlLabel);
editorHolder.appendChild(urlLabelHolder);