Skip to content

Commit

Permalink
Make new UI links open a new tab in the browser
Browse files Browse the repository at this point in the history
  • Loading branch information
David Paul Belanger committed May 9, 2019
1 parent 06a27f2 commit 43069de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions wheels/events/onrequestend/debug.cfm
Expand Up @@ -93,15 +93,15 @@
<cfif $get("enablePublicComponent")>
<table>
<tr>
<td><a href="#urlFor(route="wheelsInfo")#" class="btn">Info</a></td>
<td><a href="#urlFor(route="wheelsRoutes")#" class="btn">Routes</a></td>
<td><a href="#urlFor(route="wheelsDocs")#" class="btn">Docs</a></td>
<td><a href="#urlFor(route="wheelsPackages", type="app")#" class="btn">Tests</a></td>
<td><a href="#urlFor(route="wheelsInfo")#" class="btn" target="_blank">Info</a></td>
<td><a href="#urlFor(route="wheelsRoutes")#" class="btn" target="_blank">Routes</a></td>
<td><a href="#urlFor(route="wheelsDocs")#" class="btn" target="_blank">Docs</a></td>
<td><a href="#urlFor(route="wheelsPackages", type="app")#" class="btn" target="_blank">Tests</a></td>
<cfif $get("enableMigratorComponent")>
<td><a href="#urlFor(route="wheelsMigrator")#" class="btn">Migrator</a></td>
<td><a href="#urlFor(route="wheelsMigrator")#" class="btn" target="_blank">Migrator</a></td>
</cfif>
<cfif $get("enablePluginsComponent")>
<td><a href="#urlFor(route="wheelsPlugins")#" class="btn">Plugins</a></td>
<td><a href="#urlFor(route="wheelsPlugins")#" class="btn" target="_blank">Plugins</a></td>
</cfif>
</tr>
</table>
Expand Down

1 comment on commit 43069de

@dbelanger
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This way we don't lose our current page when the new UI opens up

Please sign in to comment.