[DE] Bug 36794 (Insert number of pages)
This commit is contained in:
parent
e5ec005568
commit
f92ad5f015
|
@ -320,6 +320,7 @@ define([
|
||||||
toolbar.btnEditHeader.menu.on('item:click', _.bind(this.onEditHeaderFooterClick, this));
|
toolbar.btnEditHeader.menu.on('item:click', _.bind(this.onEditHeaderFooterClick, this));
|
||||||
toolbar.mnuPageNumCurrentPos.on('click', _.bind(this.onPageNumCurrentPosClick, this));
|
toolbar.mnuPageNumCurrentPos.on('click', _.bind(this.onPageNumCurrentPosClick, this));
|
||||||
toolbar.mnuInsertPageCount.on('click', _.bind(this.onInsertPageCountClick, this));
|
toolbar.mnuInsertPageCount.on('click', _.bind(this.onInsertPageCountClick, this));
|
||||||
|
toolbar.mnuInsertNumberOfPage.on('click', _.bind(this.onInsertPageCountClick, this));
|
||||||
toolbar.btnBlankPage.on('click', _.bind(this.onBtnBlankPageClick, this));
|
toolbar.btnBlankPage.on('click', _.bind(this.onBtnBlankPageClick, this));
|
||||||
toolbar.listStyles.on('click', _.bind(this.onListStyleSelect, this));
|
toolbar.listStyles.on('click', _.bind(this.onListStyleSelect, this));
|
||||||
toolbar.listStyles.on('contextmenu', _.bind(this.onListStyleContextMenu, this));
|
toolbar.listStyles.on('contextmenu', _.bind(this.onListStyleContextMenu, this));
|
||||||
|
|
|
@ -1665,7 +1665,10 @@ define([
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
items: [
|
items: [
|
||||||
{caption: this.capInsertPageNumber, value: 'insertpagenumber'},
|
{caption: this.capInsertPageNumber, value: 'insertpagenumber'},
|
||||||
{caption: this.capInsertNumberOfPages, value: 'insertnumberofpage'}
|
this.mnuInsertNumberOfPage = new Common.UI.MenuItem({
|
||||||
|
caption: this.textInsertPageCount,
|
||||||
|
value: 'insertnumberofpage'
|
||||||
|
})
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue