Changeset 1313

Show
Ignore:
Timestamp:
03/05/11 15:06:08 (2 years ago)
Author:
Torben Brodt
Message:

thumbshots fix: uups, broke firefox compatiblity

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • thumbshots/files/js/Bubble.js

    r1311 r1313  
    118118                        } 
    119119                } 
    120                 Bubble.Cursor = { 
    121                         x: C.pageX, 
    122                         y: C.pageY 
    123                 }; 
     120                if(C) { 
     121                        Bubble.Cursor = { 
     122                                x: C.pageX, 
     123                                y: C.pageY 
     124                        }; 
     125                } 
    124126        }, 
    125127        addEvent: function( obj, type, fn ) {