Add hooks fired when finished processing compact language links

Bug: T145755
Change-Id: I921191c2cd32d55161b32bad2b2e0d98228cf230
这个提交包含在:
Amire80 2016-09-15 12:07:12 +03:00
父节点 475c8a87d7
当前提交 908161f0c1
共有 2 个文件被更改,包括 11 次插入0 次删除

查看文件

@ -5,6 +5,13 @@ The hook names are prefixed with mw.uls as a convention.
# List of hooks
## mw.uls.compactlinks.initialized
Fired when the rendering of compact language links and
the corresponding button is completed.
Sends a boolean true argument if the list was actually compacted
and the trigger was rendered, and false otherwise.
## mw.uls.font.change
Fired when the user changes a webfont.

查看文件

@ -75,6 +75,8 @@
if ( this.listSize <= max ) {
// Not enough languages to compact the list
mw.hook( 'mw.uls.compactlinks.initialized' ).fire( false );
return;
}
@ -98,6 +100,8 @@
}
this.addTrigger();
mw.hook( 'mw.uls.compactlinks.initialized' ).fire( true );
};
/**