| 12345678910111213141516171819202122 |
- window.OmegaPopup = {};
- $script(['js/index.js', 'js/profiles.js', 'js/keyboard.js'], 'om-main');
- $script(['js/i18n.js']);
- $script('../js/omega_target_popup.js', 'om-target', function() {
- OmegaTargetPopup.getActivePageInfo(function(err, info) {
- window.OmegaPopup.pageInfo = info;
- $script.done('om-page-info');
- });
- OmegaTargetPopup.getState([
- 'availableProfiles',
- 'currentProfileName',
- 'validResultProfiles',
- 'isSystemProfile',
- 'currentProfileCanAddRule',
- 'proxyNotControllable',
- 'externalProfile',
- 'showExternalProfile',
- ], function(err, state) {
- window.OmegaPopup.state = state;
- $script.done('om-state');
- });
- });
|