Changeset 68
- Timestamp:
- 07/21/08 23:00:37 (2 months ago)
- Files:
-
- trunk/lily/lily/chrome/content/externals/mouse.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lily/lily/chrome/content/externals/mouse.js
r1 r68 46 46 47 47 function mouseDownFunc(e) { 48 thisPtr.outlet3.doOutlet(1); 48 if(!e.button) { 49 thisPtr.outlet3.doOutlet(1); 50 } 49 51 } 50 52 51 53 function mouseUpFunc(e) { 52 thisPtr.outlet3.doOutlet(0); 54 if(!e.button) { 55 thisPtr.outlet3.doOutlet(0); 56 } 53 57 } 54 58 55 59 function mouseClickFunc(e) { 56 thisPtr.outlet4.doOutlet("bang"); 60 if(!e.button) { 61 thisPtr.outlet4.doOutlet("bang"); 62 } 57 63 } 58 64
