mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
a3b45cf33a
Summary: Update a few more packages to deactivate properly Miscelaneous fixes Initial commit of new settings package WIP WIP - can load and unload and install / uninstall Click to create new boilerplate package, package updating Test Plan: Run tests Reviewers: evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D1582
23 lines
404 B
CoffeeScript
23 lines
404 B
CoffeeScript
_ = require 'underscore'
|
|
ipc = require 'ipc'
|
|
Reflux = require 'reflux'
|
|
|
|
SettingsActions = require './settings-actions'
|
|
|
|
module.exports =
|
|
SettingsStore = Reflux.createStore
|
|
|
|
init: ->
|
|
@_tabIndex = 0
|
|
@listenTo(SettingsActions.selectTabIndex, @_onTabIndexChanged)
|
|
|
|
# Getters
|
|
|
|
tabIndex: ->
|
|
@_tabIndex
|
|
|
|
# Action Handlers
|
|
|
|
_onTabIndexChanged: (idx) ->
|
|
@_tabIndex = idx
|
|
@trigger(@)
|