2013-06-12 52 views
0

我已經使用ui強制棘輪和angularjs構建了一個移動應用程序。迄今爲止,一切都很好。我想在頁面之間切換時使用轉換,但此功能不起作用。我正在使用以下轉換定義:Ratchet過渡不適用於AngularJS

<a href="#/test" data-transition="slide-in"> 
    <strong>Testing page</strong> 
    <span class="chevron"></span> 
</a> 

在index.html中,我還嘗試在單擊上面的鏈接時捕獲棘輪推動事件。沒有事件發生。

// Catch push event fired by ratchet 
window.addEventListener('push', function(){ 
console.log("push event occurred") 
}); 

如何使push.js和angularjs可以很好地一起玩?

回答

0

嘗試將data-ignore="push"添加到<a>,或者不包含push.js文件。如果您使用的是統一的ratchet.js,請使用分離的js文件。

相關問題