##// END OF EJS Templates
Backport PR #7718: Disable output contents from overflowing page width....
Backport PR #7718: Disable output contents from overflowing page width. A scrollbar will appear when the output is too wide. closes #7701 alternative to #7721

File last commit:

r20495:1d4099c8
r20967:f12764f0
Show More
manager.py
14 lines | 438 B | text/x-python | PythonLexer
"""Manager to read and modify frontend config data in JSON files.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import os
from IPython.config.manager import BaseJSONConfigManager
class ConfigManager(BaseJSONConfigManager):
"""Config Manager used for storing notebook frontend config"""
def _config_dir(self):
return os.path.join(self.profile_dir, 'nbconfig')