-
Notifications
You must be signed in to change notification settings - Fork 149
html-reporter: Made background switchable #143
Conversation
1 similar comment
@SevInf, проверь, пожалуйста. Я так и не могу получить отчет из-за:
|
@unlok нужен ребейз. И еще jscss ругается на кодстайл. |
@@ -19,6 +19,11 @@ | |||
|
|||
{{#if success}} | |||
<div class="image-box"> | |||
<div class="cswitcher"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
data-id
же не используется в коде?
А можешь скриншотов для истории приложить? |
handleColorSwitch( | ||
target, | ||
filter.call(target.parentNode.childNodes, function(node) { | ||
return node.nodeType === 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
вместо magic numbers
лучше использовать именованные константы. Здесь Node.ELEMENT_NODE
@@ -26,10 +27,39 @@ | |||
}); | |||
} | |||
|
|||
function handleColorSwitch(target, sources) { | |||
var imageBox = target.parentNode.parentNode; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Как-то хрупко выглядит. Может лучше сразу искать ноду с классом .image-box
, чтоб не развалилось при смене верстки
В остальном 🆗 |
2 similar comments
1 similar comment
html-reporter: Made background switchable
No description provided.