mirror of https://github.com/perkeep/perkeep.git
newui: Index page actually loads recent blobs
Change-Id: I888c9500bbcfc608a9a495f38239b8dd5cc64c83
This commit is contained in:
parent
946752d851
commit
3f69a0eb7d
|
@ -10,6 +10,7 @@ goog.require('goog.events.EventHandler');
|
|||
goog.require('goog.events.EventType');
|
||||
goog.require('goog.ui.Component');
|
||||
goog.require('camlistore.BlobItemContainer');
|
||||
goog.require('camlistore.BlobItemContainer.EventType');
|
||||
goog.require('camlistore.ServerConnection');
|
||||
|
||||
|
||||
|
@ -91,7 +92,10 @@ camlistore.IndexPage.prototype.disposeInternal = function() {
|
|||
*/
|
||||
camlistore.IndexPage.prototype.enterDocument = function() {
|
||||
camlistore.IndexPage.superClass_.enterDocument.call(this);
|
||||
// Add event handlers here
|
||||
|
||||
goog.events.dispatchEvent(
|
||||
this.blobItemContainer_,
|
||||
camlistore.BlobItemContainer.EventType.SHOW_RECENT);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue