Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created May 11, 2017 05:07
Embed
What would you like to do?
4.md
// 初期化処理
__ready: function() {
var that = this;
// jQuery UI Tabsを設定
$(this.rootElement).tabs({
// タブが選択された時のコールバックを設定
// ownメソッドでラップしてイベントコンテキストやロジックを使えるようにしている。
select: that.own(that.selectTab)
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment