Code coverage report for src/Leaflet.js

Statements: 90% (9 / 10)      Branches: 50% (1 / 2)      Functions: 100% (1 / 1)      Lines: 90% (9 / 10)     

All files » src/ » Leaflet.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23          1   1     1 1   1 1 1     1     1  
/*
 * The L namespace contains all Leaflet classes and functions.
 * This code allows you to handle any possible namespace conflicts.
 */
 
var L, originalL;
 
Iif (typeof exports !== undefined + '') {
	L = exports;
} else {
	originalL = window.L;
	L = {};
 
	L.noConflict = function () {
		window.L = originalL;
		return this;
	};
 
	window.L = L;
}
 
L.version = '0.6-dev';