Skip to content

Commit

Permalink
Add babel polyfil to support ie11/ fix meny expanding on ie11
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeMurAlkh committed Oct 16, 2017
1 parent c4100c9 commit f0adb58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/webpack.base.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function resolve (dir) {

module.exports = {
entry: {
app: './src/main.js'
app: ['babel-polyfill','./src/main.js']
},
output: {
path: config.build.assetsRoot,
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"amcharts3": "github:amcharts/amcharts3",
"ammap3": "github:amcharts/ammap3",
"awesome-bootstrap-checkbox": "1.0.0-alpha.5",
"babel-polyfill": "^6.26.0",
"bootstrap": "4.0.0-alpha.6",
"bootstrap-vue": "^0.9.0",
"chart.js": "^2.6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/sidebar/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<i class="expand-icon fa fa-angle-down"></i>
</a>
<expanding>
<ul class="sidebar-submenu" v-show="item.meta.expanded">
<ul class="sidebar-submenu in" v-show="item.meta.expanded">
<li v-for="childItem in item.children">
<router-link :to="childItem.path" class="sidebar-link sidebar-submenu-link">
{{childItem.meta.title}}
Expand Down

0 comments on commit f0adb58

Please sign in to comment.