Browse Source

Fixed horizontal scrollbar

Fixed #265
master
Igor Zhukov 11 years ago
parent
commit
3310b02352
  1. 1
      app/css/app.css
  2. 2
      app/js/background.js
  3. 4
      gulpfile.js

1
app/css/app.css

@ -2231,6 +2231,7 @@ img.chat_modal_participant_photo {
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-webkit-user-select: text; -webkit-user-select: text;
word-wrap: break-word;
} }
.emoji-wysiwyg-editor img { .emoji-wysiwyg-editor img {
width: 20px; width: 20px;

2
app/js/background.js

@ -8,7 +8,7 @@
chrome.app.runtime.onLaunched.addListener(function(launchData) { chrome.app.runtime.onLaunched.addListener(function(launchData) {
chrome.app.window.create('../index.html', { chrome.app.window.create('../index.html', {
bounds: { bounds: {
width: 900, width: 1000,
height: 700 height: 700
}, },
minWidth: 320, minWidth: 320,

4
gulpfile.js

@ -3,7 +3,7 @@ var es = require('event-stream');
var pj = require('./package.json'); var pj = require('./package.json');
var $ = require('gulp-load-plugins')(); var $ = require('gulp-load-plugins')();
var concat = require('gulp-concat'); var concat = require('gulp-concat');
var path = require('path');
// The generated file is being created at src // The generated file is being created at src
// so it can be fetched by usemin. // so it can be fetched by usemin.
@ -63,7 +63,7 @@ gulp.task('copy', function() {
}); });
gulp.task('compress-dist', ['add-csp'], function() { gulp.task('compress-dist', ['add-csp'], function() {
return gulp.src('./**/*' , {cwd: process.cwd() + '/dist'}) return gulp.src('**/*', {cwd: path.join(process.cwd(), '/dist')})
.pipe($.zip('webogram_v' + pj.version + '.zip')) .pipe($.zip('webogram_v' + pj.version + '.zip'))
.pipe(gulp.dest('releases')); .pipe(gulp.dest('releases'));
}); });

Loading…
Cancel
Save