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', 'max',
'min', 'min',
'mixin', 'mixin',
'once',
'pick', 'pick',
'reduce', 'reduce',
'reduceRight', 'reduceRight',

View File

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

View File

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