Skip to content

Instantly share code, notes, and snippets.

@bartek
Created May 28, 2014 15:30
Show Gist options
  • Save bartek/6ec838f753dd90e9b179 to your computer and use it in GitHub Desktop.
Save bartek/6ec838f753dd90e9b179 to your computer and use it in GitHub Desktop.
function getSomethingMagicalFromRemote() {
var obj = cache.get('obj-key');
if (typeof obj =!="undefined")
return obj
}
// Otherwise init ajax call
$.ajax({ .... })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment