mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-05 20:34:45 +00:00
15 lines
No EOL
327 B
JavaScript
15 lines
No EOL
327 B
JavaScript
//= require "ape-ep-dom"
|
|
|
|
(function(){
|
|
|
|
var doc = this.document;
|
|
|
|
APE.EventPublisher.remove = function(src, sEvent, fp, thisArg) {
|
|
return APE.EventPublisher.get(src, sEvent).remove(fp, thisArg);
|
|
};
|
|
|
|
APE.getElement = function(id) {
|
|
return typeof id === 'string' ? doc.getElementById(id) : id;
|
|
};
|
|
|
|
})(); |