Sha256: 2956f0fbeae885fae7b54ac1c8d11c57d587b2244bfe5029d97a5cf1244c3e98

Contents?: true

Size: 672 Bytes

Versions: 1

Compression:

Stored size: 672 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Popup</title>
</head>
<body>
<div>
    <input type="button" id="open-popup" value="open" />
</div>
<script type="text/javascript" charset="utf-8" src="code-snippet.js"></script>
<script type="text/javascript" charset="utf-8">
(function() {

    document.getElementById('open-popup').onclick = function() {
        tui.util.popup.openPopup('target', {
            postBridgeUrl: 'postBridge.html',
            popupOptionStr: 'width=600,height=400',
            method: 'POST',
            param: { a: 'b' }
        });
    };

})();
</script>
</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tui_editor-rails-1.0.2.0 vendor/assets/components/tui-code-snippet/demo/postBridge/public/popup.html