Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/d1613ddb8cb56f0fe688fef7f1c2c80512d38c5c?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
src/api/UBWidgetUniboardAPI.cpp
src/api/UBWidgetUniboardAPI.h
@ -465,9 +465,9 @@ void UBWidgetUniboardAPI::sendFileMetadata(QString metaData)
UBApplication : : boardController - > displayMetaData ( qmMetaDatas ) ;
UBApplication : : boardController - > displayMetaData ( qmMetaDatas ) ;
}
}
void UBWidgetUniboardAPI : : enableDropOnWidget ( )
void UBWidgetUniboardAPI : : enableDropOnWidget ( bool enable )
{
{
mGraphicsWidget - > setAcceptDrops ( tru e) ;
mGraphicsWidget - > setAcceptDrops ( enabl e) ;
}
}
void UBWidgetUniboardAPI : : ProcessDropEvent ( QDropEvent * event )
void UBWidgetUniboardAPI : : ProcessDropEvent ( QDropEvent * event )
@ -240,7 +240,7 @@ class UBWidgetUniboardAPI : public QObject
/**
/**
* If the widget support a the drop of an object it will notify sankore about this .
* If the widget support a the drop of an object it will notify sankore about this .
*/
*/
void enableDropOnWidget ( ) ;
void enableDropOnWidget ( bool enable = true ) ;
/**
/**
* When an object is dropped on a widget , this one send us the informations to download it locally .
* When an object is dropped on a widget , this one send us the informations to download it locally .