mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
fixed css include
This commit is contained in:
@@ -138,20 +138,17 @@ void Utility::initialize(ResourceManager::Ptr ptr, const Poco::Path& extJSDir)
|
|||||||
{
|
{
|
||||||
Poco::Path aDir(extJSDir);
|
Poco::Path aDir(extJSDir);
|
||||||
aDir.makeDirectory();
|
aDir.makeDirectory();
|
||||||
aDir.setFileName("ext-base.js");
|
|
||||||
ptr->appendJSInclude(aDir);
|
ptr->appendJSInclude(Poco::Path(aDir, "ext-base.js"));
|
||||||
aDir.setFileName("ext-all.js");
|
ptr->appendJSInclude(Poco::Path(aDir, "ext-all.js"));
|
||||||
ptr->appendJSInclude(aDir);
|
ptr->appendJSInclude(Poco::Path(aDir, "DDView.js"));
|
||||||
aDir.setFileName("DDView.js");
|
ptr->appendJSInclude(Poco::Path(aDir, "MultiSelect.js"));
|
||||||
ptr->appendJSInclude(aDir);
|
|
||||||
aDir.setFileName("MultiSelect.js");
|
|
||||||
ptr->appendJSInclude(aDir);
|
|
||||||
|
|
||||||
Poco::Path cssAll("resources/css/ext-all.css");
|
Poco::Path cssAll("resources/css/ext-all.css");
|
||||||
cssAll.makeFile();
|
cssAll.makeFile();
|
||||||
|
|
||||||
ptr->appendCSSInclude(Poco::Path(extJSDir, cssAll));
|
ptr->appendCSSInclude(Poco::Path(aDir, cssAll));
|
||||||
ptr->appendCSSInclude(Poco::Path(extJSDir, "MultiSelect.css"));
|
ptr->appendCSSInclude(Poco::Path(aDir, "MultiSelect.css"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user