1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00

Fix eslint errors

This commit is contained in:
Fred Chasen 2016-12-08 01:08:39 +01:00
parent c99bfd07b7
commit a435650c3b
31 changed files with 1077 additions and 1102 deletions

View file

@ -1,5 +1,3 @@
import core from './utils/core';
/**
* Figures out the CSS to apply for a layout
* @class
@ -32,7 +30,7 @@ class Layout {
this.columnWidth = 0;
this.gap = 0;
this.divisor = 1;
};
}
/**
* Switch the flow between paginated and scrolled
@ -69,7 +67,7 @@ class Layout {
var gap = _gap || 0;
//-- Check the width and create even width columns
var fullWidth = Math.floor(_width);
// var fullWidth = Math.floor(_width);
var width = _width;
var section = Math.floor(width / 8);
@ -115,7 +113,7 @@ class Layout {
this.columnWidth = colWidth;
this.gap = gap;
this.divisor = divisor;
};
}
/**
* Apply Css to a Document
@ -134,7 +132,7 @@ class Layout {
}
return formating; // might be a promise in some View Managers
};
}
/**
* Count number of pages
@ -150,7 +148,7 @@ class Layout {
spreads : spreads,
pages : spreads * this.divisor
};
};
}
}
export default Layout;