Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
README Licensing update
Browse files Browse the repository at this point in the history
  • Loading branch information
voloko committed Aug 1, 2011
1 parent 3520c89 commit e2b5df4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -17,7 +17,7 @@ Open http://localhost:8001/

Licensing Information
=====================
This source code contained is released under one of two licenses. All use of uki-js (http://ukijs.org/) is subject to its BSD license. Non-product source code such as in common, server, storage and uki-fb is also released under the BSD license.
This source code is licensed under one of two licenses. All use of uki-js (http://ukijs.org/) is subject to its BSD license. Non-product source code such as in common, server, storage and uki-fb is also released under the BSD license.

The remaining code (notably the "ads" directory) is subject to a license which allows you to use the source code under broad terms in conjunction with the Facebook Platform.
The remaining code (notably the "ads" directory) is subject to a license that allows you to use the source code under broad terms in conjunction with the Facebook Platform.

2 changes: 1 addition & 1 deletion ads/model/ad.js
Expand Up @@ -361,7 +361,7 @@ Ad.loadFromAccountIds = function(account_ids, callback) {
callback([], true);
return;
}
var paths = adUtils.wrapArray(account_ids).map(
var paths = storeUtils.wrapArray(account_ids).map(
function(account_id) {
return pathUtils.join('act_' + account_id, '/adgroups');
}
Expand Down
2 changes: 1 addition & 1 deletion ads/model/adCreative.js
Expand Up @@ -53,7 +53,7 @@ AdCreative.loadFromAccountIds = function(account_ids, callback) {
};

AdCreative.loadCallback = function(items, isDone, callback) {
callback(adUtils.wrapArray(items), isDone);
callback(storeUtils.wrapArray(items), isDone);
};

exports.AdCreative = AdCreative;

0 comments on commit e2b5df4

Please sign in to comment.