This repository was archived by the owner on Oct 25, 2023. It is now read-only.
File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2231,6 +2231,7 @@ img.chat_modal_participant_photo {
2231
2231
transition : border-color ease-in-out 0.15s , box-shadow ease-in-out 0.15s ;
2232
2232
2233
2233
-webkit-user-select : text;
2234
+ word-wrap : break-word;
2234
2235
}
2235
2236
.emoji-wysiwyg-editor img {
2236
2237
width : 20px ;
Original file line number Diff line number Diff line change 8
8
chrome . app . runtime . onLaunched . addListener ( function ( launchData ) {
9
9
chrome . app . window . create ( '../index.html' , {
10
10
bounds : {
11
- width : 900 ,
11
+ width : 1000 ,
12
12
height : 700
13
13
} ,
14
14
minWidth : 320 ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ var es = require('event-stream');
3
3
var pj = require ( './package.json' ) ;
4
4
var $ = require ( 'gulp-load-plugins' ) ( ) ;
5
5
var concat = require ( 'gulp-concat' ) ;
6
-
6
+ var path = require ( 'path' ) ;
7
7
8
8
// The generated file is being created at src
9
9
// so it can be fetched by usemin.
@@ -63,7 +63,7 @@ gulp.task('copy', function() {
63
63
} ) ;
64
64
65
65
gulp . task ( 'compress-dist' , [ 'add-csp' ] , function ( ) {
66
- return gulp . src ( './ **/*' , { cwd : process . cwd ( ) + '/dist' } )
66
+ return gulp . src ( '**/*' , { cwd : path . join ( process . cwd ( ) , '/dist' ) } )
67
67
. pipe ( $ . zip ( 'webogram_v' + pj . version + '.zip' ) )
68
68
. pipe ( gulp . dest ( 'releases' ) ) ;
69
69
} ) ;
You can’t perform that action at this time.
0 commit comments