You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
421 B
14 lines
421 B
import {toggler} from './seeds/show_hide'
|
|
import {tabsHashInit, restoreTab} from './seeds/bootstrap_tabs'
|
|
import {sortRealtyBy} from './seeds/sort_by'
|
|
import {customCheckInit} from './seeds/custom_check'
|
|
|
|
$(function () {
|
|
restoreTab();
|
|
tabsHashInit();
|
|
customCheckInit();
|
|
window.toggler = toggler;
|
|
window.sortRealtyBy = sortRealtyBy;
|
|
// on load of the page: switch to the currently selected tab
|
|
|
|
}); |