Skip to content

Commit

Permalink
Updated files due to dependency update
Browse files Browse the repository at this point in the history
- Bootstrap files got updated
- FontAwesome files got updated
- Scripts and styles were built using new dependencies
- Webpack config updated
  Babel uses a npm namespace now and requires different packages to be
  installed and used. So `babel-core` for example is changed to
  `@babel/core`. This leads to a change to babel loader's presets
  needing new names. No other changes were needed.
  • Loading branch information
mpourismaiel committed Aug 6, 2020
1 parent a05a102 commit 88ea6bf
Show file tree
Hide file tree
Showing 74 changed files with 13,930 additions and 7,527 deletions.
18 changes: 9 additions & 9 deletions assets/scripts/syna-collapse.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions assets/scripts/syna-contact.js

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions assets/scripts/syna-content.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@
!*** ./assets/js/content.js ***!
\******************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
/***/ (function(module, exports) {

"use strict";
eval("\n\nvar sidebarContent = document.querySelector('.content-sidebar .sticky-top .content-sidebar-body');\n\nif (sidebarContent) {\n var sidebarContentParent = sidebarContent.parentElement;\n var sidebarContentParentPadding = parseInt(getComputedStyle(sidebarContentParent).paddingTop, 10);\n var headerHeight = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--header-height'), 10);\n\n document.addEventListener('scroll', function () {\n var sidebarTop = sidebarContentParent.getBoundingClientRect().top;\n var extraPadding = 0;\n\n if (sidebarTop <= headerHeight) {\n extraPadding = headerHeight;\n }\n\n sidebarContentParent.style.setProperty('padding-top', extraPadding + sidebarContentParentPadding + 'px', 'important');\n });\n}\n\n//# sourceURL=webpack:///./assets/js/content.js?");
eval("var sidebarContent = document.querySelector('.content-sidebar .sticky-top .content-sidebar-body');\n\nif (sidebarContent) {\n var sidebarContentParent = sidebarContent.parentElement;\n var sidebarContentParentPadding = parseInt(getComputedStyle(sidebarContentParent).paddingTop, 10);\n var headerHeight = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--header-height'), 10);\n document.addEventListener('scroll', function () {\n var sidebarTop = sidebarContentParent.getBoundingClientRect().top;\n var extraPadding = 0;\n\n if (sidebarTop <= headerHeight) {\n extraPadding = headerHeight;\n }\n\n sidebarContentParent.style.setProperty('padding-top', extraPadding + sidebarContentParentPadding + 'px', 'important');\n });\n}\n\n//# sourceURL=webpack:///./assets/js/content.js?");

/***/ })

Expand Down
1,937 changes: 635 additions & 1,302 deletions assets/scripts/syna-graph.js

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions assets/scripts/syna-head.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions assets/scripts/syna-hero.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 88ea6bf

Please sign in to comment.