Skip to content

Instantly share code, notes, and snippets.

@RedRussianBear
Created November 27, 2018 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RedRussianBear/40a52270ffd623bfb28df94a6c5e35bb to your computer and use it in GitHub Desktop.
Save RedRussianBear/40a52270ffd623bfb28df94a6c5e35bb to your computer and use it in GitHub Desktop.
$(document).ready(function () {
// Ensure body resizes appropriately
$('body').css('height', $(window).height());
$(window).resize(function () {$('body').css('height', $(window).height());});
// Connect to Clarifai
const app = new Clarifai.App({
apiKey: 'YOUR_API_KEY'
});
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment