This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEvent('domready', function(){ | |
var client = new APE.Move({'container':$('ape_master_container')}); | |
client.load({ | |
'domain':APE.Config.domain, | |
'server':APE.Config.server, | |
'identifier':'movedemo', | |
'channel':'move', | |
'complete':function(ape){ | |
ape.start([rand_chars()]); | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ar APE_Handler_Base = new Class({ | |
Implements: [APE.Client, Options], | |
options: { | |
userEvents: [], | |
userProps: {} | |
}, | |
initialize: function(core, userClass, options){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Element.Properties.store = { | |
set: function(props){ | |
for (var p in props) this.store(p, props[p]); | |
return this; | |
} | |
}; |
NewerOlder