~ubuntu-branches/ubuntu/lucid/virtuoso-opensource/lucid

« back to all changes in this revision

Viewing changes to binsrc/oat/toolkit/fisheye.js

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-02-05 01:22:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100205012209-h2dhz20vxpx55oam
Tags: 6.1.0-0ubuntu1
* New upstream release
* Sync with Debian packaging from Git
 - Add no_do_os_calls.diff patch, don't allow do_os_calls
 - Install to /usr/lib/virtuoso instead of /usr/bin, not a user
   binary
 - virtuoso-t installed to /usr/lib/virtuoso/
* Update build-gmake-to-make.patch
* Add package virtuoso-nepomuk to install only the files needed by nepomuk
* Remove virtuoso-nepomuk files from virtuoso-opensource-6.0-bin and libvirtodbc0
* Add virtuoso-opensource-6.0-bin.links to link to virtuoso-t from /usr/bin
* libvirtodbc0 and virtuoso-opensource-6.0-bin depends on virtuoso-nepomuk
* Remove build-dep on libwbxml2-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *  $Id: fisheye.js,v 1.7 2009/01/06 22:18:11 source Exp $
 
2
 *  $Id: fisheye.js,v 1.7.2.1 2010/01/14 15:57:39 source Exp $
3
3
 *
4
4
 *  This file is part of the OpenLink Software Ajax Toolkit (OAT) project.
5
5
 *
80
80
        self.recount = recount;
81
81
        
82
82
        var move = function(event) {
83
 
                var pos = OAT.Dom.eventPos(event);
 
83
                var pos = OAT.Event.position(event);
84
84
                recount(pos[0]);
85
85
        }
86
86
        
92
92
                recount(-1);
93
93
        }
94
94
        
95
 
        OAT.Dom.attach(self.div,"mouseover",over);
96
 
        OAT.Dom.attach(self.div,"mouseout",out);
97
 
        OAT.Dom.attach(self.div,"mousemove",move);
 
95
        OAT.Event.attach(self.div,"mouseover",over);
 
96
        OAT.Event.attach(self.div,"mouseout",out);
 
97
        OAT.Event.attach(self.div,"mousemove",move);
98
98
}
99
99
OAT.Loader.featureLoaded("fisheye");