Skip to content

Instantly share code, notes, and snippets.

View jesandco's full-sized avatar

JES & Co. jesandco

View GitHub Profile
@jesandco
jesandco / gist:5138740
Last active December 14, 2015 19:48
CORS is now enabled for ASN files. Here is a sample jQuery request for a Common Core State Standard manifest file.
$.ajax({
url: "http://s3.amazonaws.com/asnstatic/data/manifest/D10003FC.json",
success: function(data, status){
alert("success");
console.log(data);
},
error: function(){
alert("something went wrong");
}
});
@jesandco
jesandco / check-tree.js
Last active December 14, 2015 21:49
Simple replacement check-tree.js file that uses ASN Common Core State Standards manifest with CORS enabled to select specific standards. http://dev.sencha.com/deploy/ext-4.0.0/examples/tree/check-tree.html
/*
This file is part of Ext JS 4
Copyright (c) 2011 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.