renamed html2canvas.log to h2clog (minifies better)

renamed the html2canvas.canvasContext to h2cRenderContext,
it's used by both backends and thus not canvas specific
This commit is contained in:
Obexer Christoph
2012-02-25 19:58:04 +01:00
parent b82be022b2
commit c24223ca85
6 changed files with 28 additions and 26 deletions

View File

@@ -5,7 +5,7 @@
Released under MIT License
*/
html2canvas.canvasContext = function (width, height) {
function h2cRenderContext(width, height) {
var storage = [];
return {
storage: storage,
@@ -40,4 +40,4 @@ html2canvas.canvasContext = function (width, height) {
});
}
};
};
}