Skip to content

Instantly share code, notes, and snippets.

View Gpx's full-sized avatar

Giorgio Polvara Gpx

View GitHub Profile
@Gpx
Gpx / numbers.js
Created October 17, 2012 11:51 — forked from klmr/numbers.js
Add slide numbers to Google’s html5slides
var createSlideNumbering = function (skipFirstN) {
var num = 0,
slides = $('.slides article'),
slidesNum = slides.length;
slides.each(function () {
var $this = $(this);
num += 1;
if (num <= skipFirstN)
return;
if ( $this.hasClass('nonumber') ) {