Skip to content

Commit

Permalink
Merge pull request #378 from kentmw/master
Browse files Browse the repository at this point in the history
#371 - making jquery 2.2.4 work. Haven't tested beyond that
  • Loading branch information
kentmw authored Apr 16, 2018
2 parents e2aeb04 + 4db54a3 commit d5cd87f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"jasmine-core": "^2.4.1",
"jasmine-reporters": "2.0.2",
"jasmine-spec-reporter": "2.1.0",
"jquery": ">=2.1.3 <2.2.0",
"jquery-mockjax": "1.6.1",
"jquery": "2.2.4",
"jquery-mockjax": "2.2.1",
"jsdom": "3.0.2",
"jshint-stylish": "^1.0.1",
"karma": "^0.13.19",
Expand Down
2 changes: 1 addition & 1 deletion test/karma/helpers/mockjax.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var _ = require('underscore');
jQuery = $ = require('jquery');
require('jquery-mockjax');
require('jquery-mockjax')($, window);

module.exports = function() {
var routes = {};
Expand Down
44 changes: 22 additions & 22 deletions torso-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1773,28 +1773,6 @@
}));


(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['./Cell'], factory);
} else if (typeof exports === 'object') {
module.exports = factory(require('./Cell'));
} else {
root.Torso = root.Torso || {};
root.Torso.ServiceCell = factory(root.Torso.Cell);
}
}(this, function(Cell) {
'use strict';
/**
* A service cell is a event listening and event emitting object that is independent of any model or view.
* @module Torso
* @class ServiceCell
* @author [email protected]
*/
var ServiceCell = Cell.extend({ });

return ServiceCell;
}));

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['underscore', 'backbone', './templateRenderer', './Cell', './NestedCell'], factory);
Expand Down Expand Up @@ -3322,6 +3300,28 @@

return View;
}));
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['./Cell'], factory);
} else if (typeof exports === 'object') {
module.exports = factory(require('./Cell'));
} else {
root.Torso = root.Torso || {};
root.Torso.ServiceCell = factory(root.Torso.Cell);
}
}(this, function(Cell) {
'use strict';
/**
* A service cell is a event listening and event emitting object that is independent of any model or view.
* @module Torso
* @class ServiceCell
* @author [email protected]
*/
var ServiceCell = Cell.extend({ });

return ServiceCell;
}));

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['underscore', './NestedModel'], factory);
Expand Down
4 changes: 2 additions & 2 deletions torso-bundle.min.js

Large diffs are not rendered by default.

0 comments on commit d5cd87f

Please sign in to comment.