Skip to content

Commit

Permalink
Modify a few references to underscore.
Browse files Browse the repository at this point in the history
This fixes these references when importing these modules through qunit.
  • Loading branch information
jmchilton committed Jun 18, 2015
1 parent cc97958 commit 110b12e
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/galaxy.tools.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// dependencies
define([ "libs/underscore", "mvc/tools" ], function( _, Tools ) {
define([ "underscore", "mvc/tools" ], function( _, Tools ) {

var checkUncheckAll = function( name, check ) {
$("input[name='" + name + "'][type='checkbox']").attr('checked', !!check);
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Model, view, and controller objects for Galaxy tools and tool panel.
*/

define( ["libs/underscore", "viz/trackster/util", "mvc/data" ],
define( ["underscore", "viz/trackster/util", "mvc/data" ],
function(_, util, data) {

/**
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/utils/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['libs/underscore', 'viz/trackster/util', 'utils/config'], function(_, util_mod, config_mod) {
define(['underscore', 'viz/trackster/util', 'utils/config'], function(_, util_mod, config_mod) {

/**
* A configuration setting. Currently key is used as id.
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

// dependencies
define(["libs/underscore"], function(_) {
define(["underscore"], function(_) {

/** Traverse through json
*/
Expand Down
2 changes: 1 addition & 1 deletion static/maps/galaxy.tools.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion static/maps/mvc/tools.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/maps/utils/config.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 110b12e

Please sign in to comment.