Skip to content

Instantly share code, notes, and snippets.

@lolmaus
Created May 24, 2013 18:16
Show Gist options
  • Save lolmaus/5645454 to your computer and use it in GitHub Desktop.
Save lolmaus/5645454 to your computer and use it in GitHub Desktop.
var sassFilename = "style." + $('#sass-flavor :selected').prop('value');
var data = {
"description": "posting gist test",
"public": true,
"files": {
sassFilename: {
"content": sassCode
},
"structure.html": {
"content": htmlCode
}
}
}
@crswll
Copy link

crswll commented May 24, 2013

var sassFilename = "style." + $('#sass-flavor :selected').prop('value');

var data = {
"description": "posting gist test",
"public": true,
"files": {
"structure.html": {
"content": htmlCode
}
}
};

data[sassFilename] = {content:sassCode}

Is what I think you want?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment