init repo
This commit is contained in:
@@ -0,0 +1,520 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var ApplicationController = new(function () {
|
||||
var me, api, docConfig = {},
|
||||
embedConfig = {},
|
||||
permissions = {},
|
||||
maxPages = 0,
|
||||
minToolbarWidth = 550,
|
||||
minEmbedWidth = 400,
|
||||
minEmbedHeight = 600,
|
||||
embedCode = '<iframe allowtransparency="true" frameborder="0" scrolling="no" src="{embed-url}" width="{width}" height="{height}"></iframe>',
|
||||
maxZIndex = 9090,
|
||||
created = false;
|
||||
Common.Analytics.initialize("UA-12442749-13", "Embedded ONLYOFFICE Presentation");
|
||||
if (typeof isBrowserSupported !== "undefined" && !isBrowserSupported()) {
|
||||
Common.Gateway.reportError(undefined, "Your browser is not supported.");
|
||||
return;
|
||||
}
|
||||
ZeroClipboard.setMoviePath("../../../3rdparty/ZeroClipboard/ZeroClipboard10.swf");
|
||||
var clipShortUrl = new ZeroClipboard.Client();
|
||||
var clipEmbedObj = new ZeroClipboard.Client();
|
||||
clipShortUrl.zIndex = maxZIndex;
|
||||
clipEmbedObj.zIndex = maxZIndex;
|
||||
function emptyFn() {}
|
||||
function createBuffered(fn, buffer, scope, args) {
|
||||
return function () {
|
||||
var timerId;
|
||||
return function () {
|
||||
var me = this;
|
||||
if (timerId) {
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}
|
||||
timerId = setTimeout(function () {
|
||||
fn.apply(scope || me, args || arguments);
|
||||
},
|
||||
buffer);
|
||||
};
|
||||
} ();
|
||||
}
|
||||
function updateSocial() {
|
||||
var $socialPanel = $("#id-popover-social-container");
|
||||
if ($socialPanel.length > 0) {
|
||||
if ($socialPanel.attr("data-loaded") == "false") {
|
||||
typeof FB !== "undefined" && FB.XFBML && FB.XFBML.parse();
|
||||
typeof twttr !== "undefined" && twttr.widgets && twttr.widgets.load();
|
||||
$socialPanel.attr("data-loaded", "true");
|
||||
}
|
||||
}
|
||||
}
|
||||
function loadConfig(data) {
|
||||
embedConfig = $.extend(embedConfig, data.config.embedded);
|
||||
$("#id-short-url").text(embedConfig.shareUrl || "Unavailable");
|
||||
$("#id-textarea-embed").text(embedCode.replace("{embed-url}", embedConfig.embedUrl).replace("{width}", minEmbedWidth).replace("{height}", minEmbedHeight));
|
||||
if (typeof embedConfig.shareUrl !== "undefined" && embedConfig.shareUrl != "") {
|
||||
if ($("#id-popover-social-container ul")) {
|
||||
$("#id-popover-social-container ul").append('<li><div class="fb-like" data-href="' + embedConfig.shareUrl + '" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div></li>');
|
||||
$("#id-popover-social-container ul").append('<li class="share-twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-url="' + embedConfig.shareUrl + '">Tweet</a></li>');
|
||||
$("#id-popover-social-container ul").append('<li class="share-mail"><a class="btn btn-mini" href="mailto:?subject=I have shared a document with you: ' + embedConfig.docTitle + "&body=I have shared a document with you: " + embedConfig.shareUrl + '"><i class="icon-envelope"></i>Email</a></li>');
|
||||
}
|
||||
}
|
||||
if (typeof embedConfig.shareUrl === "undefined") {
|
||||
$("#id-btn-share").hide();
|
||||
}
|
||||
if (typeof embedConfig.embedUrl === "undefined") {
|
||||
$("#id-btn-embed").hide();
|
||||
}
|
||||
if (typeof embedConfig.fullscreenUrl === "undefined") {
|
||||
$("#id-btn-fullscreen").hide();
|
||||
}
|
||||
if (typeof data.config.canBackToFolder === "undefined" || !data.config.canBackToFolder) {
|
||||
$("#id-btn-close").hide();
|
||||
}
|
||||
if (embedConfig.toolbarDocked === "top") {
|
||||
$("#toolbar").addClass("top");
|
||||
$("#editor_sdk").addClass("top");
|
||||
} else {
|
||||
$("#toolbar").addClass("bottom");
|
||||
$("#editor_sdk").addClass("bottom");
|
||||
}
|
||||
if (!$("#id-btn-fullscreen").is(":visible") && !$("#id-btn-close").is(":visible")) {
|
||||
$("#toolbar .right .separator:last").hide();
|
||||
$("#pages").css("margin-right", "12px");
|
||||
}
|
||||
}
|
||||
function loadDocument(data) {
|
||||
docConfig = data.doc;
|
||||
if (docConfig) {
|
||||
permissions = $.extend(permissions, docConfig.permissions);
|
||||
var docInfo = new CDocInfo();
|
||||
docInfo.put_Id(docConfig.key);
|
||||
docInfo.put_Url(docConfig.url);
|
||||
docInfo.put_Title(docConfig.title);
|
||||
docInfo.put_Format(docConfig.fileType);
|
||||
docInfo.put_VKey(docConfig.vkey);
|
||||
if (api) {
|
||||
api.asc_enableKeyEvents(true);
|
||||
api.SetViewMode(true);
|
||||
api.LoadDocument(docInfo);
|
||||
api.Resize();
|
||||
api.zoomFitToPage();
|
||||
Common.Analytics.trackEvent("Load", "Start");
|
||||
}
|
||||
}
|
||||
}
|
||||
function onCountPages(count) {
|
||||
maxPages = count;
|
||||
$("#pages").text("of " + count);
|
||||
}
|
||||
function onCurrentPage(number) {
|
||||
$("#page-number").val(number + 1);
|
||||
}
|
||||
function onHyperlinkClick(url) {
|
||||
if (url) {
|
||||
var newDocumentPage = window.open(url, "_blank");
|
||||
if (newDocumentPage) {
|
||||
newDocumentPage.focus();
|
||||
}
|
||||
}
|
||||
}
|
||||
function onLongActionBegin(type, id) {
|
||||
var text = "";
|
||||
switch (id) {
|
||||
case c_oAscAsyncAction["Print"]:
|
||||
text = "Downloading document...";
|
||||
break;
|
||||
default:
|
||||
text = "Please wait...";
|
||||
break;
|
||||
}
|
||||
if (type == c_oAscAsyncActionType["BlockInteraction"]) {
|
||||
$("#id-loadmask .cmd-loader-title").html(text);
|
||||
showMask();
|
||||
}
|
||||
}
|
||||
function onLongActionEnd() {
|
||||
hideMask();
|
||||
}
|
||||
function onDocMouseMoveStart() {
|
||||
me.isHideBodyTip = true;
|
||||
}
|
||||
function onDocMouseMoveEnd() {
|
||||
if (me.isHideBodyTip) {
|
||||
var $tipHyperlink = $("#id-tip-hyperlink");
|
||||
if ($tipHyperlink.length > 0) {
|
||||
$tipHyperlink.hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
function onDocMouseMove(data) {
|
||||
if (data) {
|
||||
if (data.get_Type() == 1) {
|
||||
me.isHideBodyTip = false;
|
||||
var $tipHyperlink = $("#id-tip-hyperlink"),
|
||||
hyperProps = data.get_Hyperlink(),
|
||||
toolTip = (hyperProps.get_ToolTip()) ? hyperProps.get_ToolTip() : hyperProps.get_Value();
|
||||
if ($tipHyperlink.length > 0) {
|
||||
$tipHyperlink.find(".popover-content p").html(htmlEncode(toolTip) + "<br><b>Press Ctrl and click link</b>");
|
||||
$tipHyperlink.show();
|
||||
}
|
||||
$tipHyperlink.css({
|
||||
left: data.get_X() - 10,
|
||||
top: data.get_Y() - 25
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
function hidePreloader() {
|
||||
$("#loading-mask").fadeOut("slow");
|
||||
}
|
||||
function onDocumentContentReady() {
|
||||
setVisiblePopover($("#id-popover-share"), false);
|
||||
setVisiblePopover($("#id-popover-embed"), false);
|
||||
$("#id-tip-hyperlink").hide();
|
||||
handlerToolbarSize();
|
||||
hidePreloader();
|
||||
Common.Analytics.trackEvent("Load", "Complete");
|
||||
}
|
||||
function showMask() {
|
||||
$("#id-loadmask").modal({
|
||||
backdrop: "static",
|
||||
keyboard: false
|
||||
});
|
||||
}
|
||||
function hideMask() {
|
||||
$("#id-loadmask").modal("hide");
|
||||
}
|
||||
function onOpenDocument(progress) {
|
||||
$("#loadmask-text").html("LOADING DOCUMENT: " + Math.round(progress) + "%");
|
||||
}
|
||||
function onError(id, level, errData) {
|
||||
hidePreloader();
|
||||
var message;
|
||||
switch (id) {
|
||||
case c_oAscError.ID.Unknown:
|
||||
message = me.unknownErrorText;
|
||||
break;
|
||||
case c_oAscError.ID.ConvertationTimeout:
|
||||
message = me.convertationTimeoutText;
|
||||
break;
|
||||
case c_oAscError.ID.ConvertationError:
|
||||
message = me.convertationErrorText;
|
||||
break;
|
||||
case c_oAscError.ID.DownloadError:
|
||||
message = me.downloadErrorText;
|
||||
break;
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace("%1", id);
|
||||
break;
|
||||
}
|
||||
if (level == c_oAscError.Level.Critical) {
|
||||
Common.Gateway.reportError(id, message);
|
||||
$("#id-critical-error-title").text(me.criticalErrorTitle);
|
||||
$("#id-critical-error-message").text(message);
|
||||
$("#id-critical-error-close").off();
|
||||
$("#id-critical-error-close").on("click", function () {
|
||||
window.location.reload();
|
||||
});
|
||||
} else {
|
||||
$("#id-critical-error-title").text(me.notcriticalErrorTitle);
|
||||
$("#id-critical-error-message").text(message);
|
||||
$("#id-critical-error-close").off();
|
||||
$("#id-critical-error-close").on("click", function () {
|
||||
$("#id-critical-error-dialog").modal("hide");
|
||||
});
|
||||
}
|
||||
$("#id-critical-error-dialog").modal("show");
|
||||
Common.Analytics.trackEvent("Internal Error", id.toString());
|
||||
}
|
||||
function onExternalError(error) {
|
||||
if (error) {
|
||||
hidePreloader();
|
||||
$("#id-error-mask-title").text(error.title);
|
||||
$("#id-error-mask-text").text(error.msg);
|
||||
$("#id-error-mask").css("display", "block");
|
||||
Common.Analytics.trackEvent("External Error", error.title);
|
||||
}
|
||||
}
|
||||
var handlerToolbarSize = createBuffered(function (size) {
|
||||
var visibleCaption = function (btn, visible) {
|
||||
if (visible) {
|
||||
$(btn + " button").addClass("no-caption");
|
||||
$(btn + " button span").css("display", "none");
|
||||
} else {
|
||||
$(btn + " button").removeClass("no-caption");
|
||||
$(btn + " button span").css("display", "inline");
|
||||
}
|
||||
};
|
||||
var isMinimize = $("#toolbar").width() < minToolbarWidth;
|
||||
visibleCaption("#id-btn-copy", isMinimize);
|
||||
visibleCaption("#id-btn-share", isMinimize);
|
||||
visibleCaption("#id-btn-embed", isMinimize);
|
||||
},
|
||||
10);
|
||||
function onDocumentResize() {
|
||||
if (api) {
|
||||
api.Resize();
|
||||
}
|
||||
handlerToolbarSize();
|
||||
}
|
||||
function isVisiblePopover(popover) {
|
||||
return popover.hasClass("in");
|
||||
}
|
||||
function setVisiblePopover(popover, visible, owner) {
|
||||
api && api.asc_enableKeyEvents(!visible);
|
||||
if (visible) {
|
||||
if (owner) {
|
||||
popover.css("display", "block");
|
||||
var popoverData = owner.data("popover"),
|
||||
$tip = popoverData.tip(),
|
||||
pos = popoverData.getPosition(false),
|
||||
actualHeight = $tip[0].offsetHeight,
|
||||
placement = (embedConfig.toolbarDocked === "top") ? "bottom" : "top",
|
||||
tp;
|
||||
$tip.removeClass("fade in top bottom left right");
|
||||
switch (placement) {
|
||||
case "bottom":
|
||||
tp = {
|
||||
top: pos.top + pos.height,
|
||||
left: owner.position().left + (owner.width() - popover.width()) * 0.5
|
||||
};
|
||||
break;
|
||||
default:
|
||||
case "top":
|
||||
tp = {
|
||||
top: pos.top - actualHeight,
|
||||
left: owner.position().left + (owner.width() - popover.width()) * 0.5
|
||||
};
|
||||
break;
|
||||
}
|
||||
$tip.css(tp).addClass(placement).addClass("in");
|
||||
}
|
||||
if (popover.hasClass("embed")) {
|
||||
clipEmbedObj.show();
|
||||
}
|
||||
if (popover.hasClass("share")) {
|
||||
clipShortUrl.show();
|
||||
updateSocial();
|
||||
}
|
||||
} else {
|
||||
popover.removeClass("in");
|
||||
popover.css("display", "none");
|
||||
popover.hasClass("embed") && clipEmbedObj.hide();
|
||||
popover.hasClass("share") && clipShortUrl.hide();
|
||||
}
|
||||
}
|
||||
function updateEmbedCode() {
|
||||
var newWidth = parseInt($("#id-input-embed-width").val()),
|
||||
newHeight = parseInt($("#id-input-embed-height").val());
|
||||
if (newWidth < minEmbedWidth) {
|
||||
newWidth = minEmbedWidth;
|
||||
}
|
||||
if (newHeight < minEmbedHeight) {
|
||||
newHeight = minEmbedHeight;
|
||||
}
|
||||
$("#id-textarea-embed").text(embedCode.replace("{embed-url}", embedConfig.embedUrl).replace("{width}", newWidth).replace("{height}", newHeight));
|
||||
$("#id-input-embed-width").val(newWidth + "px");
|
||||
$("#id-input-embed-height").val(newHeight + "px");
|
||||
}
|
||||
function openLink(url) {
|
||||
var newDocumentPage = window.open(url);
|
||||
if (newDocumentPage) {
|
||||
newDocumentPage.focus();
|
||||
}
|
||||
}
|
||||
function createController() {
|
||||
if (created) {
|
||||
return me;
|
||||
}
|
||||
me = this;
|
||||
created = true;
|
||||
var documentMoveTimer;
|
||||
clipShortUrl.addEventListener("mousedown", function () {
|
||||
if ($("#id-btn-copy-short").hasClass("copied")) {
|
||||
return;
|
||||
}
|
||||
$("#id-btn-copy-short").button("copied");
|
||||
$("#id-btn-copy-short").addClass("copied");
|
||||
clipShortUrl.setText($("#id-short-url").text());
|
||||
setTimeout(function () {
|
||||
$("#id-btn-copy-short").button("reset");
|
||||
$("#id-btn-copy-short").removeClass("copied");
|
||||
},
|
||||
2000);
|
||||
});
|
||||
clipEmbedObj.addEventListener("mousedown", function () {
|
||||
if ($("#id-btn-copy-embed").hasClass("copied")) {
|
||||
return;
|
||||
}
|
||||
$("#id-btn-copy-embed").button("copied");
|
||||
$("#id-btn-copy-embed").addClass("copied");
|
||||
clipEmbedObj.setText($("#id-textarea-embed").text());
|
||||
setTimeout(function () {
|
||||
$("#id-btn-copy-embed").button("reset");
|
||||
$("#id-btn-copy-embed").removeClass("copied");
|
||||
},
|
||||
2000);
|
||||
});
|
||||
clipShortUrl.glue("id-btn-copy-short");
|
||||
clipEmbedObj.glue("id-btn-copy-embed");
|
||||
$("#id-btn-copy").on("click", function () {
|
||||
var saveUrl = embedConfig.saveUrl;
|
||||
if (typeof saveUrl !== "undefined" && saveUrl.length > 0) {
|
||||
openLink(saveUrl);
|
||||
} else {
|
||||
if (api) {
|
||||
api.asc_Print();
|
||||
}
|
||||
}
|
||||
Common.Analytics.trackEvent("Save");
|
||||
});
|
||||
$("#id-btn-share").on("click", function (event) {
|
||||
setVisiblePopover($("#id-popover-share"), !isVisiblePopover($("#id-popover-share")), $("#id-btn-share"));
|
||||
setVisiblePopover($("#id-popover-embed"), false);
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
});
|
||||
$("#id-btn-embed").on("click", function (event) {
|
||||
setVisiblePopover($("#id-popover-embed"), !isVisiblePopover($("#id-popover-embed")), $("#id-btn-embed"));
|
||||
setVisiblePopover($("#id-popover-share"), false);
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
});
|
||||
$("#id-input-embed-width").on("keypress", function (e) {
|
||||
if (e.keyCode == 13) {
|
||||
updateEmbedCode();
|
||||
}
|
||||
});
|
||||
$("#id-input-embed-height").on("keypress", function (e) {
|
||||
if (e.keyCode == 13) {
|
||||
updateEmbedCode();
|
||||
}
|
||||
});
|
||||
$("#id-input-embed-width").on("focusin", function (e) {
|
||||
api && api.asc_enableKeyEvents(false);
|
||||
});
|
||||
$("#id-input-embed-height").on("focusin", function (e) {
|
||||
api && api.asc_enableKeyEvents(false);
|
||||
});
|
||||
$("#id-input-embed-width").on("focusout", function (e) {
|
||||
updateEmbedCode();
|
||||
api && api.asc_enableKeyEvents(true);
|
||||
});
|
||||
$("#id-input-embed-height").on("focusout", function (e) {
|
||||
updateEmbedCode();
|
||||
api && api.asc_enableKeyEvents(true);
|
||||
});
|
||||
$("#page-number").on("keypress", function (e) {
|
||||
if (e.keyCode == 13) {
|
||||
var newPage = parseInt($("#page-number").val());
|
||||
if (newPage > maxPages) {
|
||||
newPage = maxPages;
|
||||
}
|
||||
if (newPage < 2 || isNaN(newPage)) {
|
||||
newPage = 1;
|
||||
}
|
||||
if (api) {
|
||||
api.goToPage(newPage - 1);
|
||||
}
|
||||
}
|
||||
});
|
||||
$("#id-btn-fullscreen").on("click", function () {
|
||||
openLink(embedConfig.fullscreenUrl);
|
||||
});
|
||||
$("#id-btn-close").on("click", function () {
|
||||
Common.Gateway.goBack();
|
||||
});
|
||||
$("#id-btn-zoom-in").on("click", function () {
|
||||
if (api) {
|
||||
api.zoomIn();
|
||||
}
|
||||
});
|
||||
$("#id-btn-zoom-out").on("click", function () {
|
||||
if (api) {
|
||||
api.zoomOut();
|
||||
}
|
||||
});
|
||||
$(window).resize(function () {
|
||||
onDocumentResize();
|
||||
});
|
||||
$(document).click(function (event) {
|
||||
if (event && event.target && $(event.target).closest(".popover").length > 0) {
|
||||
return;
|
||||
}
|
||||
setVisiblePopover($("#id-popover-share"), false);
|
||||
setVisiblePopover($("#id-popover-embed"), false);
|
||||
});
|
||||
$(document).mousemove(function (event) {
|
||||
$("#id-btn-zoom-in").fadeIn();
|
||||
$("#id-btn-zoom-out").fadeIn();
|
||||
clearTimeout(documentMoveTimer);
|
||||
documentMoveTimer = setTimeout(function () {
|
||||
$("#id-btn-zoom-in").fadeOut();
|
||||
$("#id-btn-zoom-out").fadeOut();
|
||||
},
|
||||
2000);
|
||||
});
|
||||
api = new asc_docs_api("editor_sdk");
|
||||
if (api) {
|
||||
api.CreateComponents();
|
||||
api.SetFontsPath("../../../sdk/Fonts/");
|
||||
api.Init();
|
||||
api.asc_registerCallback("asc_onError", onError);
|
||||
api.asc_registerCallback("asc_onDocumentContentReady", onDocumentContentReady);
|
||||
api.asc_registerCallback("asc_onOpenDocumentProgress2", onOpenDocument);
|
||||
api.asc_registerCallback("asc_onCountPages", onCountPages);
|
||||
api.asc_registerCallback("asc_onCurrentPage", onCurrentPage);
|
||||
api.asc_registerCallback("asc_onHyperlinkClick", onHyperlinkClick);
|
||||
api.asc_registerCallback("asc_onStartAction", onLongActionBegin);
|
||||
api.asc_registerCallback("asc_onEndAction", onLongActionEnd);
|
||||
api.asc_registerCallback("asc_onMouseMoveStart", onDocMouseMoveStart);
|
||||
api.asc_registerCallback("asc_onMouseMoveEnd", onDocMouseMoveEnd);
|
||||
api.asc_registerCallback("asc_onMouseMove", onDocMouseMove);
|
||||
Common.Gateway.on("init", loadConfig);
|
||||
Common.Gateway.on("opendocument", loadDocument);
|
||||
Common.Gateway.on("showerror", onExternalError);
|
||||
Common.Gateway.ready();
|
||||
}
|
||||
return me;
|
||||
}
|
||||
return {
|
||||
create: createController,
|
||||
errorDefaultMessage: "Error code: %1",
|
||||
unknownErrorText: "Unknown error.",
|
||||
convertationTimeoutText: "Convertation timeout exceeded.",
|
||||
convertationErrorText: "Convertation failed.",
|
||||
downloadErrorText: "Download failed.",
|
||||
criticalErrorTitle: "Error",
|
||||
notcriticalErrorTitle: "Warning"
|
||||
};
|
||||
})();
|
||||
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var ApplicationView = new(function () {
|
||||
function createView() {
|
||||
$("#id-btn-share").popover({
|
||||
trigger: "manual",
|
||||
template: '<div class="popover share" id="id-popover-share"><div class="arrow"></div><div class="popover-inner"><div class="popover-content"><p></p></div></div></div>',
|
||||
content: '<div class="share-link">' + '<span class="caption">Link:</span>' + '<span id="id-short-url" class="input-medium uneditable-input"></span>' + '<button id="id-btn-copy-short" type="button" class="btn btn-mini btn-primary" style="width: 65px;" data-copied-text="Copied">Copy</button>' + "</div> " + '<div class="share-buttons" style="height: 25px" id="id-popover-social-container" data-loaded="false">' + "<ul></ul>" + "</div>"
|
||||
}).popover("show");
|
||||
$("#id-btn-embed").popover({
|
||||
trigger: "manual",
|
||||
template: '<div class="popover embed" id="id-popover-embed"><div class="arrow"></div><div class="popover-inner"><div class="popover-content"><p></p></div></div></div>',
|
||||
content: '<div class="size-manual">' + '<span class="caption">Width:</span>' + '<input id="id-input-embed-width" class="input-mini" type="text" value="400px">' + '<input id="id-input-embed-height" class="right input-mini" type="text" value="600px">' + '<span class="right caption">Height:</span>' + "</div>" + '<textarea id="id-textarea-embed" rows="4" readonly></textarea>' + '<button id="id-btn-copy-embed" type="button" class="btn btn-mini btn-primary" data-copied-text="Copied">Copy</button>'
|
||||
}).popover("show");
|
||||
$("body").popover({
|
||||
trigger: "manual",
|
||||
animation: false,
|
||||
template: '<div class="popover hyperlink" id="id-tip-hyperlink"><div class="popover-inner"><div class="popover-content"><p></p></div></div></div>',
|
||||
content: "<br><b>Press Ctrl and click link</b>"
|
||||
}).popover("show");
|
||||
}
|
||||
return {
|
||||
create: createView
|
||||
};
|
||||
})();
|
||||
37
OfficeWeb/apps/presentationeditor/embed/js/application.js
Normal file
37
OfficeWeb/apps/presentationeditor/embed/js/application.js
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
(function ($) {
|
||||
$(function () {
|
||||
ApplicationView.create();
|
||||
ApplicationController.create();
|
||||
});
|
||||
})(window.jQuery);
|
||||
Reference in New Issue
Block a user