0

fullCalendarで正常にレンダリングされたGoogleカレンダーがありますが、何らかの理由で#trainingCalendar div内に2つのカレンダーがレンダリングされています。1つはページ上部の空白で、もう1つは正しいです(クリック可能なイベントにリンクされたGoogleカレンダーが表示されます)以下の1つ。本当に単純ですが、これがhtmlです。

<body>
    <div id="training">  //more stuff will go in this div, but I wanted to keep it as simple as possible for troubleshooting
        <div id="trainingCalendar">
        </div>
    </div> 
    <br class="clearfix" />
    <div id="footer">
        &copy; 2012 darkermarkerproductions.com
    </div>
</body>

...そしてここにページ自体があります:http ://www.darkermarkerproductions.com/trainingCalendar.html

私は何が欠けていますか?

4

1 に答える 1

1

2回実行しています。1回はscriptMain.jsの上部近く、もう1回は下部近くです。このコードを削除する必要があります:

$('#trainingCalendar').fullCalendar({
    // your options here
});

scriptMain.jsの下部から。

于 2013-02-03T01:51:26.160 に答える