Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Unified Diff: components/dom_distiller/core/javascript/dom_distiller_viewer.js

Issue 1298583002: Fix printing distilled pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/core/javascript/dom_distiller_viewer.js
diff --git a/components/dom_distiller/core/javascript/dom_distiller_viewer.js b/components/dom_distiller/core/javascript/dom_distiller_viewer.js
index a00d738d8231758c61be9650a18c4d0386a658d2..2645fc98c8112ee09363b5a6199e887ed500590c 100644
--- a/components/dom_distiller/core/javascript/dom_distiller_viewer.js
+++ b/components/dom_distiller/core/javascript/dom_distiller_viewer.js
@@ -129,8 +129,7 @@ function showFeedbackForm(questionText, yesText, noText) {
document.getElementById('feedbackNo').innerText = noText;
document.getElementById('feedbackQuestion').innerText = questionText;
- document.getElementById('contentWrap').style.paddingBottom = '120px';
- document.getElementById('feedbackContainer').style.display = 'block';
+ document.getElementById('feedbackContainer').classList.remove("hidden");
csaavedra 2015/08/19 12:43:52 This won't apply, you need to rebase it.
wychen 2015/08/25 23:51:27 Done.
}
/**

Powered by Google App Engine
This is Rietveld 408576698