1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/212809d82738/ changeset: 212809d82738 user: jgoecks date: 2012-07-16 01:02:59 summary: Add icon to get from Trackster to Circster. affected #: 5 files diff -r 0da18c7ba18dcc0eaf9e14596b5ff0dc348457bc -r 212809d82738b506f0458ab6196ea0026183196a static/images/fugue/globe-bw.png Binary file static/images/fugue/globe-bw.png has changed diff -r 0da18c7ba18dcc0eaf9e14596b5ff0dc348457bc -r 212809d82738b506f0458ab6196ea0026183196a static/images/fugue/globe.png Binary file static/images/fugue/globe.png has changed diff -r 0da18c7ba18dcc0eaf9e14596b5ff0dc348457bc -r 212809d82738b506f0458ab6196ea0026183196a static/june_2007_style/blue/trackster.css --- a/static/june_2007_style/blue/trackster.css +++ b/static/june_2007_style/blue/trackster.css @@ -76,6 +76,8 @@ .toolbox:hover{background:transparent url(../images/fugue/toolbox.png) no-repeat;} .filters-icon{background:transparent url(../images/fugue/ui-slider-050-bw.png) no-repeat;} .filters-icon:hover{background:transparent url(../images/fugue/ui-slider-050.png) no-repeat;} +.globe{background:transparent url(../images/fugue/globe-bw.png) no-repeat;} +.globe:hover{background:transparent url(../images/fugue/globe.png) no-repeat;} .remove-icon,.overview-close{background:transparent url(../images/fugue/cross-small-bw.png) no-repeat;} .icon-button.remove-icon:hover,.overview-close:hover{background:transparent url(../images/fugue/cross-circle.png) no-repeat;} .icon-button.toggle{background:transparent url(../images/fugue/toggle-bw.png) no-repeat;margin-right:0px;} diff -r 0da18c7ba18dcc0eaf9e14596b5ff0dc348457bc -r 212809d82738b506f0458ab6196ea0026183196a static/june_2007_style/trackster.css.tmpl --- a/static/june_2007_style/trackster.css.tmpl +++ b/static/june_2007_style/trackster.css.tmpl @@ -386,6 +386,12 @@ .filters-icon:hover { background: transparent url(../images/fugue/ui-slider-050.png) no-repeat; } +.globe { + background: transparent url(../images/fugue/globe-bw.png) no-repeat; +} +.globe:hover { + background: transparent url(../images/fugue/globe.png) no-repeat; +} .remove-icon, .overview-close { background: transparent url(../images/fugue/cross-small-bw.png) no-repeat; } diff -r 0da18c7ba18dcc0eaf9e14596b5ff0dc348457bc -r 212809d82738b506f0458ab6196ea0026183196a templates/tracks/browser.mako --- a/templates/tracks/browser.mako +++ b/templates/tracks/browser.mako @@ -113,6 +113,14 @@ // HACK -- use style to determine if panel is hidden and hide/show accordingly. parent.force_right_panel(($("div#right").css("right") == "0px" ? "hide" : "show")); } }, + { + icon_class: 'globe', + title: 'Circster', + on_click: function() { + // Add viz id dynamically so that newly saved visualizations work as well. + window.location = "${h.url_for( controller='tracks', action='circster' )}?id=" + view.vis_id; + } + }, { icon_class: 'disk--arrow', title: 'Save', on_click: function() { // Show saving dialog box show_modal("Saving...", "progress"); Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.