Move attribution handling to seperate file.

This commit is contained in:
David Molineus
2015-01-27 15:51:42 +01:00
parent 50cf8312d2
commit e10bfd24a3
3 changed files with 20 additions and 23 deletions

View File

@@ -0,0 +1,19 @@
/**
* Attribution handling.
*/
L.Control.Attribution.addInitHook(function() {
this.options.prefix += L.Contao.ATTRIBUTION;
});
L.Control.Attribution.include({
setPrefix: function (prefix) {
if (prefix.indexOf(L.Contao.ATTRIBUTION) === -1) {
prefix += L.Contao.ATTRIBUTION;
}
this.options.prefix = prefix;
this._update();
return this;
}
});