Hawk/src/js/reducers/active-file.js
Mahdi Dibaiee 764554c6b9 feat multiselection: select multiple files and act on them
fix breadcrumb: fixed breadcrumb history not working properly when clicking on "sdcard"
fix dialogs/menus: fixed clicking out of menus and dialogs triggering actions other than hiding the dialog/event
2015-09-05 16:09:09 +04:30

10 lines
178 B
JavaScript

import { ACTIVE_FILE } from 'actions/types';
export default function(state = null, action) {
if (action.type === ACTIVE_FILE) {
return action.file;
}
return state;
}