trying to add images

This commit is contained in:
Jeena Paradies 2012-11-24 00:16:51 +01:00
parent 555e7cca3c
commit a128e0278d
17 changed files with 369 additions and 31 deletions

View file

@ -117,10 +117,10 @@ function(Core, Paths, HostApp, URI) {
}
}
Timeline.prototype.sendNewMessage = function(content, in_reply_to_status_id, in_reply_to_entity, location) {
Timeline.prototype.sendNewMessage = function(content, in_reply_to_status_id, in_reply_to_entity, location, image_data_uri) {
var _this = this;
var callback = function(data) { _this.getNewData(); }
Core.prototype.sendNewMessage.call(this, content, in_reply_to_status_id, in_reply_to_entity, location, callback);
Core.prototype.sendNewMessage.call(this, content, in_reply_to_status_id, in_reply_to_entity, location, image_data_uri, callback);
}
Timeline.prototype.remove = function(id) {