Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Created June 5, 2013 16:58
Show Gist options
  • Save tyoshikawa1106/5715466 to your computer and use it in GitHub Desktop.
Save tyoshikawa1106/5715466 to your computer and use it in GitHub Desktop.
コンテンツダウンロードのJavaScript
// コンテンツダウンロード
function openDownloadWindow(prmId) {
url = "/sfc/servlet.shepherd/version/download/" + prmId;
// ポップアップ表示メソッド呼び出し
window.open(url,'','width=700,height=500');
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment