mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
(function(){
|
|
if(Element.prototype.prepend) return
|
|
|
|
Element.prototype.prepend = function(newNode) {
|
|
this.insertBefore(newNode, this.firstChild)
|
|
}
|
|
}())
|