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

Commit

Permalink
Fixed horizontal scrollbar
Browse files Browse the repository at this point in the history
Fixed #265
  • Loading branch information
zhukov committed May 8, 2014
1 parent 8047d5c commit 3310b02
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion app/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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'));
});
Expand Down

0 comments on commit 3310b02

Please sign in to comment.