Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/1ce5763adc9d299041de1bb74d23e33ac9675c99/resources/library/interactivities/Separe%20phrase.wgt/scripts/ext.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard

41 lines
741 B

Array.prototype.shuffle = function( b )
{
var i = this.length, j, t;
while( i )
{
j = Math.floor( ( i-- ) * Math.random() );
t = b && typeof this[i].shuffle!=='undefined' ? this[i].shuffle() : this[i];
this[i] = this[j];
this[j] = t;
}
return this;
};
String.prototype.copy = function()
{
return this.substring( 0, this.length );
};
String.prototype.trim = function( ext )
{
var chars = [
" ", "\t", "\n", "\r"
];
var s = this.copy();
if( arguments.length > 0 ){
for( var i in ext ){
chars.push( ext[i] );
}
}
while( chars.indexOf( s.charAt( 0 ) ) != -1 ){
s = s.substring( 1, s.length );
}
while( chars.indexOf( s.charAt( s.length-1 ) ) != -1 ){
s = s.substring( 0, s.length-1 );
}
return s;
};