From 237595a09c62195ba7f2ac11460fbe277ed1874b Mon Sep 17 00:00:00 2001 From: Pooja Soundalgekar Date: Tue, 12 Jul 2016 15:44:54 +0530 Subject: formatMenu in orientation --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 52adf8a..a4f3632 100755 --- a/index.html +++ b/index.html @@ -192,22 +192,22 @@ menu.addItem('Selection to superblock', 'images/superblock.png', function() { // @ToDo: Functionality to be put. }); - var format = menu.addItem('Format', null, null); + var formatMenu = menu.addItem('Format', null, null); menu.addItem('Rotate', 'images/rotate.png', function() { editor.execute('rotateCustom'); - }, format); + }, formatMenu); menu.addItem('Flip', 'images/flip.png', function() { editor.execute('flipCustom'); - }, format); + }, formatMenu); menu.addItem('Mirror', 'images/mirror.png', function() { editor.execute('mirrorCustom'); - }, format); + }, formatMenu); menu.addItem('Border Color', 'images/draw-brush.png', function() { showColorWheel(graph, cell, 'vertexStrokeColor'); - }, format); + }, formatMenu); menu.addItem('Fill Color', 'images/edit.png', function() { showColorWheel(graph, cell, 'vertexFillColor'); - }, format); + }, formatMenu); menu.addItem('Details', null, function() { // @ToDo: Functionality to be put. }); -- cgit