Browse Source

Fix js error when viewing on desktop.

pull/290/head
Connor Montgomery 11 years ago
parent
commit
02d13dc2ba
  1. 4
      assets/js/docs.js

4
assets/js/docs.js

@ -38,6 +38,8 @@ $(function() {
footerHeight = $('.docs-footer').outerHeight(false);
toolbarToggle = $('.js-docs-component-toolbar');
if (!device.length) return
// Device placement
if (windowWidth >= 768) {
device.initialLeft = device.offset().left;
@ -167,6 +169,8 @@ $(function() {
}
}
if (!device) return
$(window).on('load resize', initialize);
$(window).on('load', function () { new FingerBlast('.device-content'); });
});

Loading…
Cancel
Save