diff options
author | 2019-01-20 15:02:52 +0700 | |
---|---|---|
committer | 2019-01-20 15:02:52 +0700 | |
commit | b94161caadfc847b4cc9754987338be8fd98e590 (patch) | |
tree | c876f1387504e122d15d21cf4968635ee8d89871 /source/features/linkify-urls-in-code.tsx | |
parent | d39b5471194bc984c382f7a3011381c0c5033129 (diff) | |
download | refined-github-b94161caadfc847b4cc9754987338be8fd98e590.tar.gz refined-github-b94161caadfc847b4cc9754987338be8fd98e590.tar.zst refined-github-b94161caadfc847b4cc9754987338be8fd98e590.zip |
Meta: Move some functions into and out of utils.js (#1737)
Diffstat (limited to 'source/features/linkify-urls-in-code.tsx')
-rw-r--r-- | source/features/linkify-urls-in-code.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/linkify-urls-in-code.tsx b/source/features/linkify-urls-in-code.tsx index 6d527f8c..c46ba764 100644 --- a/source/features/linkify-urls-in-code.tsx +++ b/source/features/linkify-urls-in-code.tsx @@ -3,7 +3,7 @@ import linkifyUrls from 'linkify-urls'; import linkifyIssues from 'linkify-issues'; import features from '../libs/features'; import getTextNodes from '../libs/get-text-nodes'; -import {getOwnerAndRepo} from '../libs/page-detect'; +import {getOwnerAndRepo} from '../libs/utils'; // Shared class necessary to avoid also shortening the links export const linkifiedURLClass = 'rgh-linkified-code'; |