Skip to content

Commit 7b2b8c0

Browse files
committed
changed gitignore + others
1 parent 4541713 commit 7b2b8c0

3 files changed

Lines changed: 4 additions & 14 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.htaccess,.ssh
1+
.ssh/

scripts/main.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function openInit(){
247247
CREATE NEW FILE
248248
***************/
249249
function createNewFile() {
250-
var t = getId() + ".txt";
250+
var t = "untitled" + ".txt";
251251
gapi.client.load('drive', 'v2', function() {
252252
var request = gapi.client.request({
253253
'path': '/drive/v2/files',
@@ -1246,16 +1246,6 @@ function checkDir(folderId, testString, callback) {
12461246
});
12471247
retrievePageOfChildren(initialRequest, []);
12481248
}
1249-
function getId()
1250-
{
1251-
var text = "";
1252-
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
1253-
1254-
for( var i=0; i < 10; i++ )
1255-
text += possible.charAt(Math.floor(Math.random() * possible.length));
1256-
1257-
return text;
1258-
}
12591249
TogetherJSConfig_on_ready = function () {
12601250
TOpen = true;
12611251
};

style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ body {
3535
position: relative;
3636
float:left;
3737
background-color: white;
38+
overflow-x: hide;
3839
}
3940
#col_button{
4041
margin-top: 8px;
@@ -178,7 +179,7 @@ nt-face {
178179
/*side*/
179180
#placeholder {
180181
/*background-color: #c0c0c0;*/
181-
background-color: #F1C40F;
182+
background-color: #BDC3C7;
182183
width: 100%;
183184
height: 100%;
184185
display: block;
@@ -189,7 +190,6 @@ nt-face {
189190
padding: 0px;
190191
margin: 0px;
191192
background-color: #E67E22;
192-
margin-left: 2px;
193193
}
194194
#docs {
195195
height: 100%;

0 commit comments

Comments
 (0)