more textarea fixes

This commit is contained in:
jeena 2013-07-08 17:03:53 +02:00
parent 650f107d21
commit 36e45d04ab
8 changed files with 317 additions and 117 deletions

View file

@ -7,7 +7,8 @@ var bungloo = {
entityProfile: null,
conversation: null,
search: null,
cache: {}
cache: {},
newpost: null
};
requirejs.config({
@ -33,6 +34,15 @@ function start(view, callback) {
});
} else if (view == "newpost") {
require(["controller/NewPost"], function(NewPost) {
bungloo.newpost = new NewPost();
if(callback) callback();
});
} else {
@ -55,6 +65,19 @@ function start(view, callback) {
bungloo.sidebar.showContentForTimeline();
bungloo.cache.entities = {
"https://jeena.net" : {
name: "Jeena",
entity: "https://jeena.net",
avatar: "https://jeena.net/avatar.png"
},
"https://ck.kennt-wayne.de": {
name: "Christian",
entity: "http://ck.kennt-wayne.de",
avatar: "http://ck.kennt-wayne.de/pavatar.png"
}
};
});
}