Hi,
if i try to edit a user, the admin interface is broken and there is a javascript error:
Fehler: Enumerable is not defined
Quelldatei: /assets/_combinedfiles/leftandmain.js?m=1282828384
Zeile: 71
Here is the code from line 71:
Object.extend(Effect.Queue,Enumerable);
Effect.Base=function(){};
Effect.Base.prototype={
position:null,setOptions:function(options){
this.options=Object.extend({
transition:Effect.Transitions.sinoidal,duration:1.0,fps:25.0,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'
},
options||{});
}
,start:function(options){this.setOptions(options||{});
this.currentFrame=0;this.state='idle';
this.startOn=this.options.delay*1000;this.finishOn=this.startOn+(this.options.duration*1000);this.event('beforeStart');
if(!this.options.sync)Effect.Queue.add(this);
},loop:function(timePos){
if(timePos>=this.startOn){
if(timePos>=this.finishOn){
this.render(1.0);
this.cancel();
this.event('beforeFinish');
if(this.finish)this.finish();
this.event('afterFinish');
return;
}
All fields are in the first tab and i can not switch between the tabs.
A screenshot is attached. Can anybody help or give a hint?