Skip to content

Commit

Permalink
Rebuilt
Browse files Browse the repository at this point in the history
  • Loading branch information
sagacity committed Jul 8, 2011
1 parent 0946797 commit 7d5bc46
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions build/output/knockout.mapping-latest.debug.js
@@ -1,7 +1,7 @@
// Knockout Mapping plugin v1.2
// (c) 2011 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/
// License: Ms-Pl (http://www.opensource.org/licenses/ms-pl.html)

// Knockout Mapping plugin v1.2
// (c) 2011 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/
// License: Ms-Pl (http://www.opensource.org/licenses/ms-pl.html)

// Google Closure Compiler helpers (used only to make the minified file smaller)
ko.exportSymbol = function (publicPath, object) {
var tokens = publicPath.split(".");
Expand Down Expand Up @@ -241,11 +241,11 @@ ko.exportProperty = function (owner, publicName, object) {
visitPropertiesOrArrayEntries(rootObject, function (indexer) {
var fullPropertyName = parentPropertyName.length ? parentPropertyName + "." + indexer : indexer;

if (options.ignore.indexOf(fullPropertyName) != -1) {
if (ko.utils.arrayIndexOf(options.ignore, fullPropertyName) != -1) {
return;
}

if (options.copy.indexOf(fullPropertyName) != -1) {
if (ko.utils.arrayIndexOf(options.copy, fullPropertyName) != -1) {
mappedRootObject[indexer] = rootObject[indexer];
return;
}
Expand Down
20 changes: 10 additions & 10 deletions build/output/knockout.mapping-latest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7d5bc46

Please sign in to comment.