Make Print Preview and Page Setup just call print()

...even though Page Setup isn't really even...
main
Isaiah Odhner 2014-10-23 21:45:28 -04:00
parent e6f07034ec
commit d68b3068ae
2 changed files with 7 additions and 4 deletions

View File

@ -74,12 +74,9 @@
* Menu Items
* File
* Print Preview
* Page Setup (what should these do? call `print`?)
* View
* Show/Hide FontBox
* Zoom should have an actual submenu
* Zoom should have an actual submenu (but it's pointless without zoom functionality)
* Image
* Stretch / Skew (functionality)

View File

@ -26,9 +26,15 @@ var menus = {
____________________________,
{
item: "Print Pre&view",
action: function(){
print();
},
},
{
item: "Page Se&tup",
action: function(){
print();
},
},
{
item: "&Print",