Commit 0a9bee8d authored by Kyle Milka's avatar Kyle Milka Committed by Commit Bot

[NTP] When clearing attribution set cursor to default

Cursor should be set to 'default' instead of 'none'.

Bug: 977948
Change-Id: I2d4619f26bd33524718c1d3993fc6162fa2a3485
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1674410
Commit-Queue: Kyle Milka <kmilka@chromium.org>
Commit-Queue: Kristi Park <kristipark@chromium.org>
Auto-Submit: Kyle Milka <kmilka@chromium.org>
Reviewed-by: default avatarKristi Park <kristipark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#671902}
parent a5646d5a
......@@ -303,7 +303,7 @@ customize.clearAttribution = function() {
const attributions = $(customize.IDS.ATTRIBUTIONS);
attributions.removeAttribute('href');
attributions.className = '';
attributions.style.cursor = 'none';
attributions.style.cursor = 'default';
while (attributions.firstChild) {
attributions.removeChild(attributions.firstChild);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment