mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
18 lines
349 B
JavaScript
18 lines
349 B
JavaScript
|
/**
|
||
|
* @author Mateusz
|
||
|
*/
|
||
|
var Effects = {
|
||
|
initialize: function() {
|
||
|
this.setListeners = Effects.setListeners.bind(this);
|
||
|
this.rotate = Effects.rotate.bind(this);
|
||
|
this.setListeners();
|
||
|
},
|
||
|
|
||
|
rotate: function() {
|
||
|
imageTransformation.rotate(90);
|
||
|
},
|
||
|
|
||
|
setListeners: function() {
|
||
|
Event.observe('rotateButton','click',this.rotate);
|
||
|
}
|
||
|
}
|