diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-11-13 09:48:13 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-13 09:48:13 +0800 |
commit | 2b4dcb419e50cee84b4e4296b9328669c1bec626 (patch) | |
tree | fb12049af32bd0ec8d16727efd564f0a49d041b5 /packages/instant/src/util | |
parent | c67632dff5d6f16f303c12f1595af1b813d1402c (diff) | |
download | dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar.gz dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar.bz2 dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar.lz dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar.xz dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.tar.zst dexon-sol-tools-2b4dcb419e50cee84b4e4296b9328669c1bec626.zip |
fix: rename handler creator name
Diffstat (limited to 'packages/instant/src/util')
-rw-r--r-- | packages/instant/src/util/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/util/util.ts b/packages/instant/src/util/util.ts index aeb68956b..29b6b1d2b 100644 --- a/packages/instant/src/util/util.ts +++ b/packages/instant/src/util/util.ts @@ -2,5 +2,5 @@ import * as _ from 'lodash'; export const util = { boundNoop: _.noop.bind(_), - createHrefOnClick: (href: string) => () => window.open(href, '_blank'), + createOpenUrlInNewWindow: (href: string) => () => window.open(href, '_blank'), }; |