-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from kentmw/master
#371 - making jquery 2.2.4 work. Haven't tested beyond that
- Loading branch information
Showing
4 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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); | ||
|
@@ -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); | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.