summaryrefslogtreecommitdiff
path: root/spec/javascripts/lib
diff options
context:
space:
mode:
authorAndrey Krivko <jastkand@gmail.com>2017-02-03 22:16:26 +0600
committerAndrey Krivko <jastkand@gmail.com>2017-02-07 14:55:30 +0600
commitbcf81d82faf6db44a68d2c1148a693b59806057e (patch)
treee36c0b57dda396e9f413c4cd621f327eba50026e /spec/javascripts/lib
parent412ab17d3f2033c6cc602c79be56476d186f124d (diff)
downloadgitlab-ce-bcf81d82faf6db44a68d2c1148a693b59806057e.tar.gz
Fix broken anchor links when special characters are used
Diffstat (limited to 'spec/javascripts/lib')
-rw-r--r--spec/javascripts/lib/utils/common_utils_spec.js.es613
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/javascripts/lib/utils/common_utils_spec.js.es6 b/spec/javascripts/lib/utils/common_utils_spec.js.es6
index fbb06f3948b..ff70664546d 100644
--- a/spec/javascripts/lib/utils/common_utils_spec.js.es6
+++ b/spec/javascripts/lib/utils/common_utils_spec.js.es6
@@ -41,6 +41,19 @@ require('~/lib/utils/common_utils');
});
});
+ describe('gl.utils.handleLocationHash', () => {
+ beforeEach(() => {
+ window.history.pushState({}, null, '#definição');
+ });
+
+ it('decodes hash parameter', () => {
+ spyOn(window.document, 'getElementById').and.callThrough();
+ gl.utils.handleLocationHash();
+ expect(window.document.getElementById).toHaveBeenCalledWith('definição');
+ expect(window.document.getElementById).toHaveBeenCalledWith('user-content-definição');
+ });
+ });
+
describe('gl.utils.getParameterByName', () => {
beforeEach(() => {
window.history.pushState({}, null, '?scope=all&p=2');