Update backbone method dependencies.

Former-commit-id: 1b030f0a7b2f4065ec1dfc9ef911de77ebd7d842
This commit is contained in:
John-David Dalton
2012-12-14 00:54:36 -08:00
parent 99686fdd73
commit 8bee3ebd65
3 changed files with 7 additions and 0 deletions

View File

@@ -220,6 +220,7 @@
'max',
'min',
'mixin',
'once',
'pick',
'reduce',
'reduceRight',

View File

@@ -29,10 +29,15 @@
);
</script>
<script src="test-ui.js"></script>
<script src="../lodash.js"></script>
<script>
var lodash = _.noConflict();
document.write('<script src="../' + ui.buildPath + '"><\/script>');
</script>
<script>
_.mixin({
'debounce': lodash.debounce
});
if (!_.chain) {
_.mixin({
'chain': function(value) {

View File

@@ -229,6 +229,7 @@
'max',
'min',
'mixin',
'once',
'pick',
'reduce',
'reduceRight',