Skip to content

Commit

Permalink
Fixing 47 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rramo012 committed Oct 16, 2018
1 parent 01a8d46 commit be70a43
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/css/bundle.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@ body.boldgrid-editor-fullscreen {
# Drag n Drop Resize
--------------------------------------------------------------*/
.resize-handle {
position: fixed;
position: fixed !important;
height: 0; }

.resize-handle.bottom .overlay {
Expand Down
4 changes: 2 additions & 2 deletions assets/css/editor.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/editor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/scss/builder/_resize.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.resize-handle {
position: fixed;
position: fixed !important;
height: 0;

&.bottom {
Expand Down
9 changes: 9 additions & 0 deletions tools/config/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ module.exports = {
publicPath: '/'
},

externals: {
jquery: 'jQuery'
},

module: {
rules: [
{
Expand Down Expand Up @@ -150,6 +154,11 @@ module.exports = {
}
] ),

new webpack.ProvidePlugin( {
$: 'jquery',
jQuery: 'jquery'
} ),

new ExtractTextPlugin( 'assets/css/bundle.min.css' )
]
};

0 comments on commit be70a43

Please sign in to comment.