Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit 3310b02

Browse files
committed
Fixed horizontal scrollbar
Fixed #265
1 parent 8047d5c commit 3310b02

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

‎app/css/app.css

+1
Original file line numberDiff line numberDiff line change
@@ -2231,6 +2231,7 @@ img.chat_modal_participant_photo {
22312231
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
22322232

22332233
-webkit-user-select: text;
2234+
word-wrap: break-word;
22342235
}
22352236
.emoji-wysiwyg-editor img {
22362237
width: 20px;

‎app/js/background.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
chrome.app.runtime.onLaunched.addListener(function(launchData) {
99
chrome.app.window.create('../index.html', {
1010
bounds: {
11-
width: 900,
11+
width: 1000,
1212
height: 700
1313
},
1414
minWidth: 320,

‎gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var es = require('event-stream');
33
var pj = require('./package.json');
44
var $ = require('gulp-load-plugins')();
55
var concat = require('gulp-concat');
6-
6+
var path = require('path');
77

88
// The generated file is being created at src
99
// so it can be fetched by usemin.
@@ -63,7 +63,7 @@ gulp.task('copy', function() {
6363
});
6464

6565
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')})
6767
.pipe($.zip('webogram_v' + pj.version + '.zip'))
6868
.pipe(gulp.dest('releases'));
6969
});

0 commit comments

Comments
 (0)