stefanclark

Results 7 comments of stefanclark

This is exactly what I was looking for, surprised it hasn't been merged. Might be best to move the QR button to the Link Ending column of the table?

This should be good to merge?

Is this okay now?

the last commit changed the css include in `index.html` from `dist/style.min.css` to `dist/style.css` - change it back and the slider re-appears

need to check the required height for the content based on the height of the of the section: e.g. if $('#two > div').innerHeight() is greater than $('#two').height() then change the...

I've not tested this, but try changing line 140: ``` javascript $this.css({height: $window.height() * heightmult}); ``` to ``` javascript contentHeight = 0; $this.children().each(function(){contentHeight += $(this).height()}); if (contentHeight > $window.height() *...