~jbicha/ubuntu/oneiric/gnome-shell/oneiric-3.2.2.1

« back to all changes in this revision

Viewing changes to js/ui/docDisplay.js

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2011-09-07 09:09:05 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: package-import@ubuntu.com-20110907090905-kbo4fewcg12zt99u
Tags: 3.1.90.1-0ubuntu1
* New upstream release.
* debian/control: Bump build-depends on new mutter
* debian/patches/01_favorite_apps.patch: Updated
* debian/patches/03_remove-glx-dependency-on-armel.patch: Refreshed
* debian/patches/04_build-without-caribou.patch
  - Build without caribou since Ubuntu uses onboard and our System 
    Settings doesn't support choosing a different screen keyboard yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    },
31
31
 
32
32
    activateResult: function(id, params) {
33
 
        params = Params.parse(params, { workspace: null,
34
 
                                        timestamp: null });
 
33
        params = Params.parse(params, { workspace: -1,
 
34
                                        timestamp: 0 });
35
35
 
36
36
        let docInfo = this._docManager.lookupByUri(id);
37
 
        docInfo.launch(params.workspace ? params.workspace.index() : -1);
 
37
        docInfo.launch(params.workspace);
38
38
    },
39
39
 
40
40
    getInitialResultSet: function(terms) {