Skip to content

Commit 52ba24b

Browse files
author
mayintao3
committed
feat: remove log
1 parent c6d844a commit 52ba24b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/parse_style_properties.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ pub fn parse_style_properties(properties: &Vec<(String, Property)>) -> DeclsAndV
225225
))));
226226
}
227227
"pointerEvents" => {
228-
println!("=+= pointerEvents");
229228
final_properties.push(StyleValueType::PointerEvents(PointerEvents::from((
230229
id.to_string(),
231230
value,

src/style_propetries/pointer_events.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ impl From<(String, &Property<'_>)> for PointerEvents {
2222
let val = value.1
2323
.value_to_css_string(PrinterOptions::default())
2424
.unwrap_or(String::from(""));
25-
println!("=+=PointerEvents {:?}", val);
2625
PointerEvents {
2726
id: value.0,
2827
value: match val.as_str() {

0 commit comments

Comments
 (0)