| author | Sidharth Singh | 2012-09-10 05:29:07 (EDT) |
|---|---|---|
| committer | Stephan Born | 2012-09-10 05:29:07 (EDT) |
| commit | bb34df34590c89e0b9e8fb783a8178ad4bee19ed (patch) (side-by-side diff) | |
| tree | eb9f885d98932477cfe240e8c59c3f497dec5217 | |
| parent | 677800f2c0eac8b7e386a702e58ffaf24587ddc2 (diff) | |
| download | org.eclipse.stardust.ui.web-bb34df34590c89e0b9e8fb783a8178ad4bee19ed.zip org.eclipse.stardust.ui.web-bb34df34590c89e0b9e8fb783a8178ad4bee19ed.tar.gz org.eclipse.stardust.ui.web-bb34df34590c89e0b9e8fb783a8178ad4bee19ed.tar.bz2 | |
CRNT-26085
1)Added code to prevent drag of PoolSymbol
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@59038 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | web-modeler/src/main/resources/META-INF/xhtml/js/m_poolSymbol.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/web-modeler/src/main/resources/META-INF/xhtml/js/m_poolSymbol.js b/web-modeler/src/main/resources/META-INF/xhtml/js/m_poolSymbol.js index 4d34ca2..25a0100 100644 --- a/web-modeler/src/main/resources/META-INF/xhtml/js/m_poolSymbol.js +++ b/web-modeler/src/main/resources/META-INF/xhtml/js/m_poolSymbol.js @@ -490,6 +490,27 @@ define( /**
*
*/
+ PoolSymbol.prototype.dragStart = function() {
+ // Do nothing
+ };
+
+ /**
+ *
+ */
+ PoolSymbol.prototype.drag = function(dX, dY, x, y) {
+ // Do nothing
+ };
+
+ /**
+ *
+ */
+ PoolSymbol.prototype.dragStop = function() {
+ // Do nothing
+ };
+
+ /**
+ *
+ */
PoolSymbol.prototype.createFlyOutMenuBackground = function(x,
y, height, width) {
this.flyOutMenuBackground = m_canvasManager
@@ -650,4 +671,5 @@ define( function PoolSymbol_hoverOutFlyOutMenuClosure() {
this.auxiliaryProperties.callbackScope.hideFlyOutMenu();
}
+
});
\ No newline at end of file |

