summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-12-10 21:33:56 -0600
committerJules Laplace <jules@okfoc.us>2015-12-10 21:33:56 -0600
commit13a66557666db25dd67bdc3eb0e52b11292045d1 (patch)
tree80a969449c534e8915f82681c39afccde103726e
parente0392872bb83b0570a3e295d3b8c1953704199f5 (diff)
product.all api
-rwxr-xr-xStoneIsland/www/js/sdk/product.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/StoneIsland/www/js/sdk/product.js b/StoneIsland/www/js/sdk/product.js
index 55f1940a..7c12e7d7 100755
--- a/StoneIsland/www/js/sdk/product.js
+++ b/StoneIsland/www/js/sdk/product.js
@@ -3,6 +3,16 @@ sdk.product = (function(){
var default_gallery = 31617
+ product.all = function(opt){
+ return $.ajax({
+ method: "GET",
+ url: sdk.path("Search.API/1.2", "search.json"),
+ data: { format: "full", productsPerPage: 100 },
+ success: opt.success,
+ error: opt.error,
+ })
+ }
+
product.collection = function(opt){
return $.ajax({
method: "GET",