特定のデータ (リンク、pdf) などをユーザーに表示するために埋め込み埋め込みを利用する Meteor アプリケーションを作成しています。アプリケーションが生成する埋め込み呼び出しの数を追跡したいと考えています。そのために、組み込みには独自の Analytics ( http://embed.ly/docs/analytics/install ) があります。
<script>
(function(w, d){
var id='embedly-platform', n = 'script';
if (!d.getElementById(id)){
w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
var e = d.createElement(n); e.id = id; e.async=1;
e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
var s = d.getElementsByTagName(n)[0];
s.parentNode.insertBefore(e, s);
}
})(window, document);
// This is the important line. You will need to insert your API KEY here.
embedly('analytics', {key: '<Your Embedly Key>'});
</script>
ヘルパー関数として機能しないように見えるため、このスクリプトを meteor で動作するように記述する方法を教えてください。私はすでにこのスクリプトで .js ファイルを作成しようとしましたが、Wait-on-Lib パッケージを使用してそれをロードしましたが、その方法でも機能しません。