Updated JS dependencies

This commit is contained in:
Djamil Legato
2016-05-31 11:55:39 -07:00
parent 6f2f216218
commit 38cff92ae9
9 changed files with 47 additions and 43 deletions

View File

@@ -13,6 +13,7 @@
* Added hover on plugins list rows to match pages [#619](https://github.com/getgrav/grav-plugin-admin/issues/619)
* Translate media configuration [#608](https://github.com/getgrav/grav-plugin-admin/issues/608)
* Use raw routes in blueprints to better support multi-language [#798](https://github.com/getgrav/grav-plugin-admin/issues/798)
* Updated NPM modules dependencies
1. [](#bugfix)
* Fix double "Removed successfully" appearing when removing a package [#609](https://github.com/getgrav/grav-plugin-admin/issues/609)
* Prevent removing required plugins dependencies when removing a package [#613](https://github.com/getgrav/grav-plugin-admin/issues/613)

View File

@@ -31,8 +31,12 @@ global.setInterval(() => {
// global event to catch sidebar_state changes
$(global).on('sidebar_state._grav', () => {
$('.admin-menu-wrapper').data('scrollbar').update();
$('#admin-main .content-wrapper').data('scrollbar').update();
/* Should not be needed since Gemini Scrollbar v1.4.0
* - Auto-update scrollbar on resize
*
* $('.admin-menu-wrapper').data('scrollbar').update();
* $('#admin-main .content-wrapper').data('scrollbar').update();
*/
Object.keys(Dashboard.Chart.Instances).forEach((chart) => {
Dashboard.Chart.Instances[chart].chart.update();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -15,16 +15,16 @@
"dependencies": {
"bootstrap": "^3.3.6",
"chartist": "^0.9.7",
"codemirror": "^5.14.2",
"codemirror": "^5.15.2",
"cookies-js": "^1.2.2",
"debounce": "^1.0.0",
"dropzone": "^4.3.0",
"eonasdan-bootstrap-datetimepicker": "^4.15.35",
"es6-map": "^0.1.3",
"gemini-scrollbar": "^1.3.2",
"gemini-scrollbar": "^1.4.0",
"immutable": "^3.8.1",
"immutablediff": "^0.4.2",
"js-yaml": "^3.6.0",
"js-yaml": "^3.6.1",
"mout": "^1.0.0",
"remodal": "^1.0.7",
"selectize": "^0.12.1",
@@ -32,15 +32,15 @@
"speakingurl": "^9.0.0",
"toastr": "^2.1.2",
"watchjs": "0.0.0",
"whatwg-fetch": "^0.11.0"
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint": "^2.11.1",
"eslint-loader": "^1.3.0",
"exports-loader": "^0.6.3",
"gulp": "^3.9.1",
@@ -52,6 +52,6 @@
"json-loader": "^0.5.4",
"merge-stream": "^1.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
"webpack": "^1.13.1"
}
}

View File

@@ -83,3 +83,15 @@
opacity: 1;
transition: opacity 340ms ease-out;
}
.gm-resize-trigger {
position: absolute;
display: block;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow: hidden;
pointer-events: none;
z-index: -1;
}