Skip to content

Commit

Permalink
Merge pull request #83 from OpenWiseSolutions/feature/OHFJIRA-90-url-…
Browse files Browse the repository at this point in the history
…search-params

Feature/OHFJIRA-90
  • Loading branch information
kkovarik committed Jul 17, 2018
2 parents c432de4 + fcf02fe commit 51b82e6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions admin-console/package.json
Expand Up @@ -151,6 +151,7 @@
"style-loader": "^0.18.2",
"tinycolor2": "^1.4.1",
"url-loader": "^0.5.6",
"url-search-params-polyfill": "^3.0.0",
"validator": "^7.0.0",
"webfontloader": "^1.6.28",
"webpack": "^1.12.14",
Expand Down
11 changes: 10 additions & 1 deletion admin-console/public/offline/fonts/index.css
Expand Up @@ -242,6 +242,15 @@
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';

/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;

/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;

/* Support for IE. */
font-feature-settings: 'liga';
}
3 changes: 3 additions & 0 deletions admin-console/src/common/modules/auth.module.js
Expand Up @@ -5,6 +5,9 @@ import { login, userInfo, logout } from '../../services/auth.service'
import { fetchConsoleConfig } from '../../services/appConfig.service'
import { toggleSidebar, updateTitle } from '../../layouts/CoreLayout/coreLayout.module'

// URLSearchParams polyfill for Microsoft Edge
import 'url-search-params-polyfill'

// ------------------------------------
// Constants
// ------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions admin-console/yarn.lock
Expand Up @@ -6815,6 +6815,10 @@ url-loader@^0.5.6:
loader-utils "0.2.x"
mime "1.2.x"

url-search-params-polyfill@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/url-search-params-polyfill/-/url-search-params-polyfill-3.0.0.tgz#145fae5b19fc72e8e0a148a2b3ee5330c58f9555"

url@~0.10.1:
version "0.10.3"
resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
Expand Down

0 comments on commit 51b82e6

Please sign in to comment.