Fixed horizontal scrollbar

Fixed #265
This commit is contained in:
Igor Zhukov 2014-05-08 21:06:08 +01:00
parent 8047d5c8f4
commit 3310b02352
3 changed files with 4 additions and 3 deletions

View File

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

View File

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

View File

@ -3,7 +3,7 @@ var es = require('event-stream');
var pj = require('./package.json');
var $ = require('gulp-load-plugins')();
var concat = require('gulp-concat');
var path = require('path');
// The generated file is being created at src
// so it can be fetched by usemin.
@ -63,7 +63,7 @@ gulp.task('copy', 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(gulp.dest('releases'));
});