UNPKG

todomvc

Version:

> Helping you select an MV\* framework

21 lines (18 loc) 453 B
/*global define:false */ define([ 'troopjs-browser/component/widget', 'jquery' ], function FiltersModule(Widget, $) { 'use strict'; return Widget.extend({ 'hub:memory/route': function onRoute(uri) { this.publish('todos/filter', uri.source); }, 'hub:memory/todos/filter': function onFilter(filter) { $('a[href^="#"]') .removeClass('selected') .filter('[href="#' + (filter || '/') + '"]') .addClass('selected'); } }); });