Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
upgraded jquery.xpath
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnR committed Dec 31, 2013
1 parent 548efc0 commit 57d03ca
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = function( grunt ) {
baseUrl: 'src',
paths: {
jquery: '../test/lib/jquery',
'jquery.getXPath': '../lib/jquery-xpath/jquery.getXPath'
'jquery.xpath': '../lib/jquery-xpath/jquery.xpath'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/jquery-xpath
2 changes: 1 addition & 1 deletion src/FormModelJSON.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define( [ 'jquery', 'jquery.getXPath' ], function( $ ) {
define( [ 'jquery', 'jquery.xpath' ], function( $ ) {

/**
* Class maintaining a Drishti JSON Data Definition and deal with JSON <-> XML transformation
Expand Down
2 changes: 1 addition & 1 deletion test/runner.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
jquery: '../test/lib/jquery',
'mock': '../test/mock',
'spec': '../test/spec',
'jquery.getXPath' : '../lib/jquery-xpath/jquery.getXpath'
'jquery.xpath' : '../lib/jquery-xpath/jquery.xpath'
}
});

Expand Down
2 changes: 1 addition & 1 deletion test/spec/model-json.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ if ( typeof define !== 'function' ) {
var define = require( 'amdefine' )( module );
}

define( [ "FormModelJSON", "jquery", "jquery.getXPath" ], function( FormModelJSON, $ ) {
define( [ "FormModelJSON", "jquery", "jquery.xpath" ], function( FormModelJSON, $ ) {

describe( "Conversion from Drishti-style JSON non-repeat form elements to an XML instance", function() {
var data = mockInstances.a,
Expand Down

0 comments on commit 57d03ca

Please sign in to comment.