Resolve issue where resizeme event will not trigger without other plugins, because triggers are never initialised.
import { Plugin } from './foundation.core.plugin';
import { GetYoDigits } from './foundation.core.utils';
+import { Triggers } from './foundation.util.triggers';
/**
* Interchange module.
this.currentPath = '';
this.className = 'Interchange'; // ie9 back compat
+ // Triggers init is idempotent, just need to make sure it is initialized
+ Triggers.init($);
+
this._init();
this._events();
}