diff --git a/docs/docco.css b/docs/docco.css index 03ba910d2..b2e601974 100644 --- a/docs/docco.css +++ b/docs/docco.css @@ -76,6 +76,7 @@ table td { min-width: 450px; min-height: 5px; padding: 10px 25px 1px 50px; + overflow-x: hidden; vertical-align: top; text-align: left; } diff --git a/docs/underscore.html b/docs/underscore.html index 2cca5f476..85174c8bf 100644 --- a/docs/underscore.html +++ b/docs/underscore.html @@ -1,6 +1,6 @@
underscore.js | |
|---|---|
| |
Function Functions | |
| Create a function bound to a given object (assigning | |
Function (ahem) Functions | |
| Create a function bound to a given object (assigning | _.bind = function(func, obj) {
var args = slice.call(arguments, 2);
return function() {
diff --git a/underscore.js b/underscore.js
index 9dce73ef0..2227dcf5e 100644
--- a/underscore.js
+++ b/underscore.js
@@ -1,6 +1,6 @@
// (c) 2010 Jeremy Ashkenas, DocumentCloud Inc.
-// Underscore is freely distributable under the terms of the MIT license.
-// Portions of Underscore are inspired by or borrowed from Prototype.js,
+// Underscore is freely distributable under the MIT license.
+// Portions of Underscore are inspired or borrowed from Prototype,
// Oliver Steele's Functional, and John Resig's Micro-Templating.
// For all details and documentation:
// http://documentcloud.github.com/underscore
@@ -368,7 +368,7 @@
return range;
};
- // Function Functions
+ // Function (ahem) Functions
// ------------------
// Create a function bound to a given object (assigning `this`, and arguments,
|