Merge pull request #1883 from ONLYOFFICE/feature/direct-url
Set directUrl
This commit is contained in:
commit
bed3ba49cd
|
@ -118,6 +118,7 @@ DE.ApplicationController = new(function(){
|
|||
|
||||
docInfo.put_Id(docConfig.key);
|
||||
docInfo.put_Url(docConfig.url);
|
||||
docInfo.put_DirectUrl(docConfig.directUrl);
|
||||
docInfo.put_Title(docConfig.title);
|
||||
docInfo.put_Format(docConfig.fileType);
|
||||
docInfo.put_VKey(docConfig.vkey);
|
||||
|
|
|
@ -482,6 +482,7 @@ define([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -465,6 +465,7 @@ define([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -124,6 +124,7 @@ class MainController extends Component {
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -115,6 +115,7 @@ PE.ApplicationController = new(function(){
|
|||
|
||||
docInfo.put_Id(docConfig.key);
|
||||
docInfo.put_Url(docConfig.url);
|
||||
docInfo.put_DirectUrl(docConfig.directUrl);
|
||||
docInfo.put_Title(docConfig.title);
|
||||
docInfo.put_Format(docConfig.fileType);
|
||||
docInfo.put_VKey(docConfig.vkey);
|
||||
|
|
|
@ -107,6 +107,7 @@ require([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.key);
|
||||
docInfo.put_Url(data.url);
|
||||
docInfo.put_DirectUrl(data.directUrl);
|
||||
docInfo.put_Title(data.title);
|
||||
docInfo.put_Format(data.fileType);
|
||||
docInfo.put_VKey(data.vkey);
|
||||
|
|
|
@ -421,6 +421,7 @@ define([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -108,6 +108,7 @@ require([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.key);
|
||||
docInfo.put_Url(data.url);
|
||||
docInfo.put_DirectUrl(data.directUrl);
|
||||
docInfo.put_Title(data.title);
|
||||
docInfo.put_Format(data.fileType);
|
||||
docInfo.put_VKey(data.vkey);
|
||||
|
|
|
@ -117,6 +117,7 @@ class MainController extends Component {
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -122,6 +122,7 @@ SSE.ApplicationController = new(function(){
|
|||
|
||||
docInfo.put_Id(docConfig.key);
|
||||
docInfo.put_Url(docConfig.url);
|
||||
docInfo.put_DirectUrl(docConfig.directUrl);
|
||||
docInfo.put_Title(docConfig.title);
|
||||
docInfo.put_Format(docConfig.fileType);
|
||||
docInfo.put_VKey(docConfig.vkey);
|
||||
|
|
|
@ -494,6 +494,7 @@ define([
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
|
@ -162,6 +162,7 @@ class MainController extends Component {
|
|||
docInfo = new Asc.asc_CDocInfo();
|
||||
docInfo.put_Id(data.doc.key);
|
||||
docInfo.put_Url(data.doc.url);
|
||||
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||
docInfo.put_Title(data.doc.title);
|
||||
docInfo.put_Format(data.doc.fileType);
|
||||
docInfo.put_VKey(data.doc.vkey);
|
||||
|
|
Loading…
Reference in a new issue