Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2103 from kvhnuke/fix/unsafe-eval
Browse files Browse the repository at this point in the history
Fix/unsafe eval
  • Loading branch information
gamalielhere authored Oct 17, 2018
2 parents 87dd11b + 88feb7b commit 7ea1ed2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/includes/header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,18 @@
@@if (site === 'mew' ) {
<a class="brand" href="/" aria-label="Go to homepage">
<img src="images/logo-myetherwallet.svg" height="64px" width="245px" alt="MyEtherWallet" />
<p class="small visible-xs">3.23.0</p>
<p class="small visible-xs">3.23.1</p>
</a>
}
@@if (site === 'cx' ) {
<a class="brand" href="/cx-wallet.html" aria-label="Go to homepage">
<img src="images/logo-myetherwalletcx.svg" height="64px" width="245px" alt="MyEtherWallet" />
<p class="small visible-xs">3.23.0</p>
<p class="small visible-xs">3.23.1</p>
</a>
}
<div class="tagline">
<span class="hidden-xs">3.23.0</span>
<span class="hidden-xs">3.23.1</span>
<span class="dropdown dropdown-lang" ng-cloak>
<a tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="change language. current language {{curLang}}" class="dropdown-toggle" ng-click="dropdown = !dropdown">{{curLang}}<i class="caret"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet",
"version": "3.23.0",
"version": "3.23.1",
"manifest_version": 2,
"description": "MyEtherWallet Chrome Extension",
"homepage_url": "https://www.myetherwallet.com/",
Expand Down
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ let js_destFile = "etherwallet-master.js";
let browseOpts = { debug: true }; // generates inline source maps - only in js-debug
let babelOpts = {
presets: ["env"],
compact: false,
global: true
compact: false
};

function bundle_js(bundler) {
Expand Down

0 comments on commit 7ea1ed2

Please sign in to comment.