diff --git a/.gitignore b/.gitignore index ef2f6bbe16..28b78aedbc 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,5 @@ reports/ *.egg-info Gemfile.lock .env/ - +lms/static/sass/*.css +cms/static/sass/*.css diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..72ec77d0e2 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "askbot"] + path = askbot + url = git@github.com:MITx/askbot-devel.git diff --git a/.pylintrc b/.pylintrc index 54e2f5c8a9..ce2f2e3b87 100644 --- a/.pylintrc +++ b/.pylintrc @@ -33,7 +33,7 @@ load-plugins= # can either give multiple identifier separated by comma (,) or put this option # multiple time (only on the command line, not in the configuration file where # it should appear only once). -#disable= +disable=E1102,W0142 [REPORTS] @@ -82,7 +82,7 @@ zope=no # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E0201 when accessed. Python regular # expressions are accepted. -generated-members=REQUEST,acl_users,aq_parent +generated-members=REQUEST,acl_users,aq_parent,objects,DoesNotExist,can_read,can_write,get_url,size [BASIC] diff --git a/Gemfile b/Gemfile index c6a19caca2..9ad08c7adb 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source :rubygems - +ruby "1.9.3" gem 'rake' gem 'sass', '3.1.15' gem 'bourbon', '~> 1.3.6' diff --git a/askbot b/askbot new file mode 160000 index 0000000000..1c3381046c --- /dev/null +++ b/askbot @@ -0,0 +1 @@ +Subproject commit 1c3381046c78e055439ba1c78e0df48410fcc13e diff --git a/cms/djangoapps/contentstore/__init__.py b/cms/djangoapps/contentstore/__init__.py index ef4e31614e..e69de29bb2 100644 --- a/cms/djangoapps/contentstore/__init__.py +++ b/cms/djangoapps/contentstore/__init__.py @@ -1,34 +0,0 @@ -from xmodule.modulestore.django import modulestore -from xmodule.modulestore.xml import XMLModuleStore -import logging - -log = logging.getLogger(__name__) - - -def import_from_xml(data_dir, course_dirs=None): - """ - Import the specified xml data_dir into the django defined modulestore, - using org and course as the location org and course. - """ - module_store = XMLModuleStore( - data_dir, - default_class='xmodule.raw_module.RawDescriptor', - eager=True, - course_dirs=course_dirs - ) - for module in module_store.modules.itervalues(): - - # TODO (cpennington): This forces import to overrite the same items. - # This should in the future create new revisions of the items on import - try: - modulestore().create_item(module.location) - except: - log.exception('Item already exists at %s' % module.location.url()) - pass - if 'data' in module.definition: - modulestore().update_item(module.location, module.definition['data']) - if 'children' in module.definition: - modulestore().update_children(module.location, module.definition['children']) - modulestore().update_metadata(module.location, dict(module.metadata)) - - return module_store diff --git a/cms/djangoapps/contentstore/management/commands/import.py b/cms/djangoapps/contentstore/management/commands/import.py index 75d4e2618c..a6790ad59b 100644 --- a/cms/djangoapps/contentstore/management/commands/import.py +++ b/cms/djangoapps/contentstore/management/commands/import.py @@ -1,9 +1,11 @@ ### -### One-off script for importing courseware form XML format +### Script for importing courseware from XML format ### from django.core.management.base import BaseCommand, CommandError -from contentstore import import_from_xml +from xmodule.modulestore.xml_importer import import_from_xml +from xmodule.modulestore.django import modulestore + unnamed_modules = 0 @@ -21,4 +23,7 @@ class Command(BaseCommand): course_dirs = args[1:] else: course_dirs = None - import_from_xml(data_dir, course_dirs) + print "Importing. Data_dir={data}, course_dirs={courses}".format( + data=data_dir, + courses=course_dirs) + import_from_xml(modulestore(), data_dir, course_dirs) diff --git a/cms/djangoapps/contentstore/tests/__init__.py b/cms/djangoapps/contentstore/tests/__init__.py index 8b13789179..e69de29bb2 100644 --- a/cms/djangoapps/contentstore/tests/__init__.py +++ b/cms/djangoapps/contentstore/tests/__init__.py @@ -1 +0,0 @@ - diff --git a/cms/djangoapps/contentstore/tests/tests.py b/cms/djangoapps/contentstore/tests/tests.py index 0542d4cf03..429774c91e 100644 --- a/cms/djangoapps/contentstore/tests/tests.py +++ b/cms/djangoapps/contentstore/tests/tests.py @@ -1,13 +1,19 @@ import json -from django.test.client import Client from django.test import TestCase +from django.test.client import Client from mock import patch, Mock from override_settings import override_settings from django.conf import settings from django.core.urlresolvers import reverse +from path import path from student.models import Registration from django.contrib.auth.models import User +from xmodule.modulestore.django import modulestore +import xmodule.modulestore.django +from xmodule.modulestore import Location +from xmodule.modulestore.xml_importer import import_from_xml +import copy def parse_json(response): @@ -19,23 +25,84 @@ def user(email): '''look up a user by email''' return User.objects.get(email=email) + def registration(email): '''look up registration object by email''' return Registration.objects.get(user__email=email) -class AuthTestCase(TestCase): + +class ContentStoreTestCase(TestCase): + def _login(self, email, pw): + '''Login. View should always return 200. The success/fail is in the + returned json''' + resp = self.client.post(reverse('login_post'), + {'email': email, 'password': pw}) + self.assertEqual(resp.status_code, 200) + return resp + + def login(self, email, pw): + '''Login, check that it worked.''' + resp = self._login(email, pw) + data = parse_json(resp) + self.assertTrue(data['success']) + return resp + + def _create_account(self, username, email, pw): + '''Try to create an account. No error checking''' + resp = self.client.post('/create_account', { + 'username': username, + 'email': email, + 'password': pw, + 'location': 'home', + 'language': 'Franglish', + 'name': 'Fred Weasley', + 'terms_of_service': 'true', + 'honor_code': 'true', + }) + return resp + + def create_account(self, username, email, pw): + '''Create the account and check that it worked''' + resp = self._create_account(username, email, pw) + self.assertEqual(resp.status_code, 200) + data = parse_json(resp) + self.assertEqual(data['success'], True) + + # Check both that the user is created, and inactive + self.assertFalse(user(email).is_active) + + return resp + + def _activate_user(self, email): + '''Look up the activation key for the user, then hit the activate view. + No error checking''' + activation_key = registration(email).activation_key + + # and now we try to activate + resp = self.client.get(reverse('activate', kwargs={'key': activation_key})) + return resp + + def activate_user(self, email): + resp = self._activate_user(email) + self.assertEqual(resp.status_code, 200) + # Now make sure that the user is now actually activated + self.assertTrue(user(email).is_active) + + +class AuthTestCase(ContentStoreTestCase): """Check that various permissions-related things work""" def setUp(self): self.email = 'a@b.com' self.pw = 'xyz' self.username = 'testuser' + self.client = Client() def check_page_get(self, url, expected): resp = self.client.get(url) self.assertEqual(resp.status_code, expected) return resp - + def test_public_pages_load(self): """Make sure pages that don't require login load without error.""" pages = ( @@ -53,67 +120,10 @@ class AuthTestCase(TestCase): data = parse_json(resp) self.assertEqual(data['success'], False) - def _create_account(self, username, email, pw): - '''Try to create an account. No error checking''' - resp = self.client.post('/create_account', { - 'username': username, - 'email': email, - 'password': pw, - 'location' : 'home', - 'language' : 'Franglish', - 'name' : 'Fred Weasley', - 'terms_of_service' : 'true', - 'honor_code' : 'true'}) - return resp - - def create_account(self, username, email, pw): - '''Create the account and check that it worked''' - resp = self._create_account(username, email, pw) - self.assertEqual(resp.status_code, 200) - data = parse_json(resp) - self.assertEqual(data['success'], True) - - # Check both that the user is created, and inactive - self.assertFalse(user(self.email).is_active) - - return resp - - def _activate_user(self, email): - '''look up the user's activation key in the db, then hit the activate view. - No error checking''' - activation_key = registration(email).activation_key - - # and now we try to activate - resp = self.client.get(reverse('activate', kwargs={'key': activation_key})) - return resp - - def activate_user(self, email): - resp = self._activate_user(email) - self.assertEqual(resp.status_code, 200) - # Now make sure that the user is now actually activated - self.assertTrue(user(self.email).is_active) - def test_create_account(self): self.create_account(self.username, self.email, self.pw) self.activate_user(self.email) - - def _login(self, email, pw): - '''Login. View should always return 200. The success/fail is in the - returned json''' - resp = self.client.post(reverse('login_post'), - {'email': email, 'password': pw}) - self.assertEqual(resp.status_code, 200) - return resp - - - def login(self, email, pw): - '''Login, check that it worked.''' - resp = self._login(self.email, self.pw) - data = parse_json(resp) - self.assertTrue(data['success']) - return resp - def test_login(self): self.create_account(self.username, self.email, self.pw) @@ -121,7 +131,7 @@ class AuthTestCase(TestCase): resp = self._login(self.email, self.pw) data = parse_json(resp) self.assertFalse(data['success']) - + self.activate_user(self.email) # Now login should work @@ -144,6 +154,9 @@ class AuthTestCase(TestCase): # need an activated user self.test_create_account() + # Create a new session + self.client = Client() + # Not logged in. Should redirect to login. print 'Not logged in' for page in auth_pages: @@ -157,7 +170,6 @@ class AuthTestCase(TestCase): for page in simple_auth_pages: print "Checking '{0}'".format(page) self.check_page_get(page, expected=200) - def test_index_auth(self): @@ -166,3 +178,34 @@ class AuthTestCase(TestCase): self.assertEqual(resp.status_code, 302) # Logged in should work. + +TEST_DATA_MODULESTORE = copy.deepcopy(settings.MODULESTORE) +TEST_DATA_MODULESTORE['default']['OPTIONS']['fs_root'] = path('common/test/data') + +@override_settings(MODULESTORE=TEST_DATA_MODULESTORE) +class EditTestCase(ContentStoreTestCase): + """Check that editing functionality works on example courses""" + + def setUp(self): + email = 'edit@test.com' + password = 'foo' + self.create_account('edittest', email, password) + self.activate_user(email) + self.login(email, password) + xmodule.modulestore.django._MODULESTORES = {} + xmodule.modulestore.django.modulestore().collection.drop() + + def check_edit_item(self, test_course_name): + import_from_xml(modulestore(), 'common/test/data/', [test_course_name]) + + for descriptor in modulestore().get_items(Location(None, None, None, None, None)): + print "Checking ", descriptor.location.url() + print descriptor.__class__, descriptor.location + resp = self.client.get(reverse('edit_item'), {'id': descriptor.location.url()}) + self.assertEqual(resp.status_code, 200) + + def test_edit_item_toy(self): + self.check_edit_item('toy') + + def test_edit_item_full(self): + self.check_edit_item('full') diff --git a/cms/djangoapps/contentstore/views.py b/cms/djangoapps/contentstore/views.py index 4013af2e89..0fccc2498b 100644 --- a/cms/djangoapps/contentstore/views.py +++ b/cms/djangoapps/contentstore/views.py @@ -1,18 +1,27 @@ from util.json_request import expect_json import json +import logging +from collections import defaultdict -from django.http import HttpResponse +from django.http import HttpResponse, Http404 from django.contrib.auth.decorators import login_required from django.core.context_processors import csrf from django_future.csrf import ensure_csrf_cookie from django.core.urlresolvers import reverse -from fs.osfs import OSFS from xmodule.modulestore import Location +from xmodule.x_module import ModuleSystem from github_sync import export_to_github +from static_replace import replace_urls -from mitxmako.shortcuts import render_to_response +from mitxmako.shortcuts import render_to_response, render_to_string from xmodule.modulestore.django import modulestore +from xmodule_modifiers import replace_static_urls, wrap_xmodule +from xmodule.exceptions import NotFoundError +from functools import partial + +log = logging.getLogger(__name__) + # ==== Public views ================================================== @@ -22,7 +31,8 @@ def signup(request): Display the signup form. """ csrf_token = csrf(request)['csrf_token'] - return render_to_response('signup.html', {'csrf': csrf_token }) + return render_to_response('signup.html', {'csrf': csrf_token}) + @ensure_csrf_cookie def login_page(request): @@ -30,13 +40,17 @@ def login_page(request): Display the login form. """ csrf_token = csrf(request)['csrf_token'] - return render_to_response('login.html', {'csrf': csrf_token }) - + return render_to_response('login.html', {'csrf': csrf_token}) + + # ==== Views for any logged-in user ================================== @login_required @ensure_csrf_cookie def index(request): + """ + List all courses available to the logged in user + """ courses = modulestore().get_items(['i4x', None, None, 'course', None]) return render_to_response('index.html', { 'courses': [(course.metadata['display_name'], @@ -47,6 +61,7 @@ def index(request): for course in courses] }) + # ==== Views with per-item permissions================================ def has_access(user, location): @@ -54,32 +69,47 @@ def has_access(user, location): # TODO (vshnayder): actually check perms return user.is_active and user.is_authenticated + @login_required @ensure_csrf_cookie def course_index(request, org, course, name): + """ + Display an editable course overview. + + org, course, name: Attributes of the Location for the item to edit + """ location = ['i4x', org, course, 'course', name] if not has_access(request.user, location): raise Http404 # TODO (vshnayder): better error - + # TODO (cpennington): These need to be read in from the active user course = modulestore().get_item(location) weeks = course.get_children() return render_to_response('course_index.html', {'weeks': weeks}) + @login_required def edit_item(request): + """ + Display an editing page for the specified module. + + Expects a GET request with the parameter 'id'. + + id: A Location URL + """ # TODO (vshnayder): change name from id to location in coffee+html as well. item_location = request.GET['id'] - print item_location, request.GET if not has_access(request.user, item_location): raise Http404 # TODO (vshnayder): better error - + item = modulestore().get_item(item_location) + item.get_html = wrap_xmodule(item.get_html, item, "xmodule_edit.html") return render_to_response('unit.html', { 'contents': item.get_html(), - 'js_module': item.js_module_name(), + 'js_module': item.js_module_name, 'category': item.category, 'name': item.name, + 'previews': get_module_previews(request, item), }) @@ -98,6 +128,149 @@ def user_author_string(user): last=l, email=user.email) + +@login_required +def preview_dispatch(request, preview_id, location, dispatch=None): + """ + Dispatch an AJAX action to a preview XModule + + Expects a POST request, and passes the arguments to the module + + preview_id (str): An identifier specifying which preview this module is used for + location: The Location of the module to dispatch to + dispatch: The action to execute + """ + + instance_state, shared_state = load_preview_state(request, preview_id, location) + descriptor = modulestore().get_item(location) + instance = load_preview_module(request, preview_id, descriptor, instance_state, shared_state) + # Let the module handle the AJAX + try: + ajax_return = instance.handle_ajax(dispatch, request.POST) + except NotFoundError: + log.exception("Module indicating to user that request doesn't exist") + raise Http404 + except: + log.exception("error processing ajax call") + raise + + save_preview_state(request, preview_id, location, instance.get_instance_state(), instance.get_shared_state()) + return HttpResponse(ajax_return) + + +def load_preview_state(request, preview_id, location): + """ + Load the state of a preview module from the request + + preview_id (str): An identifier specifying which preview this module is used for + location: The Location of the module to dispatch to + """ + if 'preview_states' not in request.session: + request.session['preview_states'] = defaultdict(dict) + + instance_state = request.session['preview_states'][preview_id, location].get('instance') + shared_state = request.session['preview_states'][preview_id, location].get('shared') + + return instance_state, shared_state + + +def save_preview_state(request, preview_id, location, instance_state, shared_state): + """ + Load the state of a preview module to the request + + preview_id (str): An identifier specifying which preview this module is used for + location: The Location of the module to dispatch to + instance_state: The instance state to save + shared_state: The shared state to save + """ + if 'preview_states' not in request.session: + request.session['preview_states'] = defaultdict(dict) + + request.session['preview_states'][preview_id, location]['instance'] = instance_state + request.session['preview_states'][preview_id, location]['shared'] = shared_state + + +def render_from_lms(template_name, dictionary, context=None, namespace='main'): + """ + Render a template using the LMS MAKO_TEMPLATES + """ + return render_to_string(template_name, dictionary, context, namespace="lms." + namespace) + + +def preview_module_system(request, preview_id, descriptor): + """ + Returns a ModuleSystem for the specified descriptor that is specialized for + rendering module previews. + + request: The active django request + preview_id (str): An identifier specifying which preview this module is used for + descriptor: An XModuleDescriptor + """ + return ModuleSystem( + ajax_url=reverse('preview_dispatch', args=[preview_id, descriptor.location.url(), '']), + # TODO (cpennington): Do we want to track how instructors are using the preview problems? + track_function=lambda type, event: None, + filestore=descriptor.system.resources_fs, + get_module=partial(get_preview_module, request, preview_id), + render_template=render_from_lms, + debug=True, + replace_urls=replace_urls, + # TODO (vshnayder): All CMS users get staff view by default + # is that what we want? + is_staff=True, + ) + + +def get_preview_module(request, preview_id, location): + """ + Returns a preview XModule at the specified location. The preview_data is chosen arbitrarily + from the set of preview data for the descriptor specified by Location + + request: The active django request + preview_id (str): An identifier specifying which preview this module is used for + location: A Location + """ + descriptor = modulestore().get_item(location) + instance_state, shared_state = descriptor.get_sample_state()[0] + return load_preview_module(request, preview_id, descriptor, instance_state, shared_state) + + +def load_preview_module(request, preview_id, descriptor, instance_state, shared_state): + """ + Return a preview XModule instantiated from the supplied descriptor, instance_state, and shared_state + + request: The active django request + preview_id (str): An identifier specifying which preview this module is used for + descriptor: An XModuleDescriptor + instance_state: An instance state string + shared_state: A shared state string + """ + system = preview_module_system(request, preview_id, descriptor) + module = descriptor.xmodule_constructor(system)(instance_state, shared_state) + module.get_html = replace_static_urls( + wrap_xmodule(module.get_html, module, "xmodule_display.html"), + module.metadata['data_dir'] + ) + save_preview_state(request, preview_id, descriptor.location.url(), + module.get_instance_state(), module.get_shared_state()) + + return module + + +def get_module_previews(request, descriptor): + """ + Returns a list of preview XModule html contents. One preview is returned for each + pair of states returned by get_sample_state() for the supplied descriptor. + + descriptor: An XModuleDescriptor + """ + preview_html = [] + for idx, (instance_state, shared_state) in enumerate(descriptor.get_sample_state()): + module = load_preview_module(request, str(idx), descriptor, instance_state, shared_state) + preview_html.append(module.get_html()) + return preview_html + + @login_required @expect_json def save_item(request): @@ -118,4 +291,7 @@ def save_item(request): author_string = user_author_string(request.user) export_to_github(course, "CMS Edit", author_string) - return HttpResponse(json.dumps({})) + descriptor = modulestore().get_item(item_location) + preview_html = get_module_previews(request, descriptor) + + return HttpResponse(json.dumps(preview_html)) diff --git a/cms/djangoapps/github_sync/__init__.py b/cms/djangoapps/github_sync/__init__.py index 9f490119af..e3215cbec1 100644 --- a/cms/djangoapps/github_sync/__init__.py +++ b/cms/djangoapps/github_sync/__init__.py @@ -5,36 +5,77 @@ from django.conf import settings from fs.osfs import OSFS from git import Repo, PushInfo -from contentstore import import_from_xml -from xmodule.modulestore import Location +from xmodule.modulestore.xml_importer import import_from_xml +from xmodule.modulestore.django import modulestore +from collections import namedtuple -from .exceptions import GithubSyncError +from .exceptions import GithubSyncError, InvalidRepo log = logging.getLogger(__name__) +RepoSettings = namedtuple('RepoSettings', 'path branch origin') -def import_from_github(repo_settings): - """ - Imports data into the modulestore based on the XML stored on github - repo_settings is a dictionary with the following keys: - path: file system path to the local git repo - branch: name of the branch to track on github +def sync_all_with_github(): """ - repo_path = repo_settings['path'] - data_dir, course_dir = os.path.split(repo_path) + Sync all defined repositories from github + """ + for repo_name in settings.REPOS: + sync_with_github(load_repo_settings(repo_name)) + + +def sync_with_github(repo_settings): + """ + Sync specified repository from github + + repo_settings: A RepoSettings defining which repo to sync + """ + revision, course = import_from_github(repo_settings) + export_to_github(course, "Changes from cms import of revision %s" % revision, "CMS ") + + +def setup_repo(repo_settings): + """ + Reset the local github repo specified by repo_settings + + repo_settings (RepoSettings): The settings for the repo to reset + """ + course_dir = repo_settings.path + repo_path = settings.GITHUB_REPO_ROOT / course_dir if not os.path.isdir(repo_path): - Repo.clone_from(repo_settings['origin'], repo_path) + Repo.clone_from(repo_settings.origin, repo_path) git_repo = Repo(repo_path) origin = git_repo.remotes.origin origin.fetch() # Do a hard reset to the remote branch so that we have a clean import - git_repo.git.checkout(repo_settings['branch']) - git_repo.head.reset('origin/%s' % repo_settings['branch'], index=True, working_tree=True) - module_store = import_from_xml(data_dir, course_dirs=[course_dir]) + git_repo.git.checkout(repo_settings.branch) + + return git_repo + + +def load_repo_settings(course_dir): + """ + Returns the repo_settings for the course stored in course_dir + """ + if course_dir not in settings.REPOS: + raise InvalidRepo(course_dir) + + return RepoSettings(course_dir, **settings.REPOS[course_dir]) + + +def import_from_github(repo_settings): + """ + Imports data into the modulestore based on the XML stored on github + """ + course_dir = repo_settings.path + git_repo = setup_repo(repo_settings) + git_repo.head.reset('origin/%s' % repo_settings.branch, index=True, working_tree=True) + + module_store = import_from_xml(modulestore(), + settings.GITHUB_REPO_ROOT, course_dirs=[course_dir]) return git_repo.head.commit.hexsha, module_store.courses[course_dir] @@ -44,21 +85,23 @@ def export_to_github(course, commit_message, author_str=None): and push to github (if MITX_FEATURES['GITHUB_PUSH'] is True). If author_str is specified, uses it in the commit. ''' - repo_path = settings.DATA_DIR / course.metadata.get('course_dir', course.location.course) - fs = OSFS(repo_path) + course_dir = course.metadata.get('data_dir', course.location.course) + repo_settings = load_repo_settings(course_dir) + git_repo = setup_repo(repo_settings) + + fs = OSFS(git_repo.working_dir) xml = course.export_to_xml(fs) with fs.open('course.xml', 'w') as course_xml: course_xml.write(xml) - git_repo = Repo(repo_path) if git_repo.is_dirty(): git_repo.git.add(A=True) if author_str is not None: git_repo.git.commit(m=commit_message, author=author_str) else: git_repo.git.commit(m=commit_message) - + origin = git_repo.remotes.origin if settings.MITX_FEATURES['GITHUB_PUSH']: push_infos = origin.push() diff --git a/cms/djangoapps/github_sync/exceptions.py b/cms/djangoapps/github_sync/exceptions.py index 9097ffc2a6..1fe8d1d73e 100644 --- a/cms/djangoapps/github_sync/exceptions.py +++ b/cms/djangoapps/github_sync/exceptions.py @@ -1,2 +1,6 @@ class GithubSyncError(Exception): pass + + +class InvalidRepo(Exception): + pass diff --git a/test_root/data/custom_tags/.git-keep b/cms/djangoapps/github_sync/management/__init__.py similarity index 100% rename from test_root/data/custom_tags/.git-keep rename to cms/djangoapps/github_sync/management/__init__.py diff --git a/cms/djangoapps/github_sync/management/commands/__init__.py b/cms/djangoapps/github_sync/management/commands/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cms/djangoapps/github_sync/management/commands/sync_with_github.py b/cms/djangoapps/github_sync/management/commands/sync_with_github.py new file mode 100644 index 0000000000..4383871df3 --- /dev/null +++ b/cms/djangoapps/github_sync/management/commands/sync_with_github.py @@ -0,0 +1,14 @@ +### +### Script for syncing CMS with defined github repos +### + +from django.core.management.base import NoArgsCommand +from github_sync import sync_all_with_github + + +class Command(NoArgsCommand): + help = \ +'''Sync the CMS with the defined github repos''' + + def handle_noargs(self, **options): + sync_all_with_github() diff --git a/cms/djangoapps/github_sync/tests/__init__.py b/cms/djangoapps/github_sync/tests/__init__.py index 452904ffff..581ac3cb25 100644 --- a/cms/djangoapps/github_sync/tests/__init__.py +++ b/cms/djangoapps/github_sync/tests/__init__.py @@ -1,45 +1,48 @@ from django.test import TestCase from path import path import shutil -import os -from github_sync import import_from_github, export_to_github +from github_sync import ( + import_from_github, export_to_github, load_repo_settings, + sync_all_with_github, sync_with_github +) from git import Repo from django.conf import settings from xmodule.modulestore.django import modulestore from xmodule.modulestore import Location from override_settings import override_settings from github_sync.exceptions import GithubSyncError +from mock import patch, Mock + +REPO_DIR = settings.GITHUB_REPO_ROOT / 'local_repo' +WORKING_DIR = path(settings.TEST_ROOT) +REMOTE_DIR = WORKING_DIR / 'remote_repo' -@override_settings(DATA_DIR=path('test_root')) +@override_settings(REPOS={ + 'local_repo': { + 'origin': REMOTE_DIR, + 'branch': 'master', + } +}) class GithubSyncTestCase(TestCase): def cleanup(self): - shutil.rmtree(self.repo_dir, ignore_errors=True) - shutil.rmtree(self.remote_dir, ignore_errors=True) + shutil.rmtree(REPO_DIR, ignore_errors=True) + shutil.rmtree(REMOTE_DIR, ignore_errors=True) + modulestore().collection.drop() def setUp(self): - self.working_dir = path(settings.TEST_ROOT) - self.repo_dir = self.working_dir / 'local_repo' - self.remote_dir = self.working_dir / 'remote_repo' - # make sure there's no stale data lying around self.cleanup() - shutil.copytree('common/test/data/toy', self.remote_dir) + shutil.copytree('common/test/data/toy', REMOTE_DIR) - remote = Repo.init(self.remote_dir) + remote = Repo.init(REMOTE_DIR) remote.git.add(A=True) remote.git.commit(m='Initial commit') remote.git.config("receive.denyCurrentBranch", "ignore") - modulestore().collection.drop() - - self.import_revision, self.import_course = import_from_github({ - 'path': self.repo_dir, - 'origin': self.remote_dir, - 'branch': 'master', - }) + self.import_revision, self.import_course = import_from_github(load_repo_settings('local_repo')) def tearDown(self): self.cleanup() @@ -48,7 +51,7 @@ class GithubSyncTestCase(TestCase): """ Test that importing from github will create a repo if the repo doesn't already exist """ - self.assertEquals(1, len(Repo(self.repo_dir).head.reference.log())) + self.assertEquals(1, len(Repo(REPO_DIR).head.reference.log())) def test_import_contents(self): """ @@ -56,17 +59,30 @@ class GithubSyncTestCase(TestCase): """ self.assertEquals('Toy Course', self.import_course.metadata['display_name']) self.assertIn( - Location('i4x://edx/local_repo/chapter/Overview'), + Location('i4x://edX/toy/chapter/Overview'), [child.location for child in self.import_course.get_children()]) self.assertEquals(1, len(self.import_course.get_children())) + @patch('github_sync.sync_with_github') + def test_sync_all_with_github(self, sync_with_github): + sync_all_with_github() + sync_with_github.assert_called_with(load_repo_settings('local_repo')) + + def test_sync_with_github(self): + with patch('github_sync.import_from_github', Mock(return_value=(Mock(), Mock()))) as import_from_github: + with patch('github_sync.export_to_github') as export_to_github: + settings = load_repo_settings('local_repo') + sync_with_github(settings) + import_from_github.assert_called_with(settings) + export_to_github.assert_called + @override_settings(MITX_FEATURES={'GITHUB_PUSH': False}) def test_export_no_pash(self): """ Test that with the GITHUB_PUSH feature disabled, no content is pushed to the remote """ export_to_github(self.import_course, 'Test no-push') - self.assertEquals(1, Repo(self.remote_dir).head.commit.count()) + self.assertEquals(1, Repo(REMOTE_DIR).head.commit.count()) @override_settings(MITX_FEATURES={'GITHUB_PUSH': True}) def test_export_push(self): @@ -75,7 +91,7 @@ class GithubSyncTestCase(TestCase): """ self.import_course.metadata['display_name'] = 'Changed display name' export_to_github(self.import_course, 'Test push') - self.assertEquals(2, Repo(self.remote_dir).head.commit.count()) + self.assertEquals(2, Repo(REMOTE_DIR).head.commit.count()) @override_settings(MITX_FEATURES={'GITHUB_PUSH': True}) def test_export_conflict(self): @@ -84,7 +100,7 @@ class GithubSyncTestCase(TestCase): """ self.import_course.metadata['display_name'] = 'Changed display name' - remote = Repo(self.remote_dir) + remote = Repo(REMOTE_DIR) remote.git.commit(allow_empty=True, m="Testing conflict commit") self.assertRaises(GithubSyncError, export_to_github, self.import_course, 'Test push') diff --git a/cms/djangoapps/github_sync/tests/test_views.py b/cms/djangoapps/github_sync/tests/test_views.py index 9e8095a67b..212d707340 100644 --- a/cms/djangoapps/github_sync/tests/test_views.py +++ b/cms/djangoapps/github_sync/tests/test_views.py @@ -1,53 +1,43 @@ import json from django.test.client import Client from django.test import TestCase -from mock import patch, Mock +from mock import patch from override_settings import override_settings -from django.conf import settings +from github_sync import load_repo_settings -@override_settings(REPOS={'repo': {'path': 'path', 'branch': 'branch'}}) +@override_settings(REPOS={'repo': {'branch': 'branch', 'origin': 'origin'}}) class PostReceiveTestCase(TestCase): def setUp(self): self.client = Client() - @patch('github_sync.views.export_to_github') - @patch('github_sync.views.import_from_github') - def test_non_branch(self, import_from_github, export_to_github): + @patch('github_sync.views.sync_with_github') + def test_non_branch(self, sync_with_github): self.client.post('/github_service_hook', {'payload': json.dumps({ 'ref': 'refs/tags/foo'}) }) - self.assertFalse(import_from_github.called) - self.assertFalse(export_to_github.called) + self.assertFalse(sync_with_github.called) - @patch('github_sync.views.export_to_github') - @patch('github_sync.views.import_from_github') - def test_non_watched_repo(self, import_from_github, export_to_github): + @patch('github_sync.views.sync_with_github') + def test_non_watched_repo(self, sync_with_github): self.client.post('/github_service_hook', {'payload': json.dumps({ 'ref': 'refs/heads/branch', 'repository': {'name': 'bad_repo'}}) }) - self.assertFalse(import_from_github.called) - self.assertFalse(export_to_github.called) + self.assertFalse(sync_with_github.called) - @patch('github_sync.views.export_to_github') - @patch('github_sync.views.import_from_github') - def test_non_tracked_branch(self, import_from_github, export_to_github): + @patch('github_sync.views.sync_with_github') + def test_non_tracked_branch(self, sync_with_github): self.client.post('/github_service_hook', {'payload': json.dumps({ 'ref': 'refs/heads/non_branch', 'repository': {'name': 'repo'}}) }) - self.assertFalse(import_from_github.called) - self.assertFalse(export_to_github.called) + self.assertFalse(sync_with_github.called) - @patch('github_sync.views.export_to_github') - @patch('github_sync.views.import_from_github', return_value=(Mock(), Mock())) - def test_tracked_branch(self, import_from_github, export_to_github): + @patch('github_sync.views.sync_with_github') + def test_tracked_branch(self, sync_with_github): self.client.post('/github_service_hook', {'payload': json.dumps({ 'ref': 'refs/heads/branch', 'repository': {'name': 'repo'}}) }) - import_from_github.assert_called_with(settings.REPOS['repo']) - mock_revision, mock_course = import_from_github.return_value - export_to_github.assert_called_with(mock_course, 'path', "Changes from cms import of revision %s" % mock_revision) - + sync_with_github.assert_called_with(load_repo_settings('repo')) diff --git a/cms/djangoapps/github_sync/views.py b/cms/djangoapps/github_sync/views.py index e4cae6cad8..941d50f986 100644 --- a/cms/djangoapps/github_sync/views.py +++ b/cms/djangoapps/github_sync/views.py @@ -5,7 +5,7 @@ from django.http import HttpResponse from django.conf import settings from django_future.csrf import csrf_exempt -from . import import_from_github, export_to_github +from . import sync_with_github, load_repo_settings log = logging.getLogger() @@ -40,13 +40,12 @@ def github_post_receive(request): log.info('No repository matching %s found' % repo_name) return HttpResponse('No Repo Found') - repo = settings.REPOS[repo_name] + repo = load_repo_settings(repo_name) - if repo['branch'] != branch_name: + if repo.branch != branch_name: log.info('Ignoring changes to non-tracked branch %s in repo %s' % (branch_name, repo_name)) return HttpResponse('Ignoring non-tracked branch') - revision, course = import_from_github(repo) - export_to_github(course, repo['path'], "Changes from cms import of revision %s" % revision) + sync_with_github(repo) return HttpResponse('Push received') diff --git a/cms/envs/aws.py b/cms/envs/aws.py new file mode 100644 index 0000000000..f03e10c9b1 --- /dev/null +++ b/cms/envs/aws.py @@ -0,0 +1,48 @@ +""" +This is the default template for our main set of AWS servers. +""" +import json + +from .logsettings import get_logger_config +from .common import * + +############################### ALWAYS THE SAME ################################ +DEBUG = False +TEMPLATE_DEBUG = False + +EMAIL_BACKEND = 'django_ses.SESBackend' +SESSION_ENGINE = 'django.contrib.sessions.backends.cache' +DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' + +########################### NON-SECURE ENV CONFIG ############################## +# Things like server locations, ports, etc. +with open(ENV_ROOT / "cms.env.json") as env_file: + ENV_TOKENS = json.load(env_file) + +SITE_NAME = ENV_TOKENS['SITE_NAME'] + +LOG_DIR = ENV_TOKENS['LOG_DIR'] + +CACHES = ENV_TOKENS['CACHES'] + +for feature, value in ENV_TOKENS.get('MITX_FEATURES', {}).items(): + MITX_FEATURES[feature] = value + +LOGGING = get_logger_config(LOG_DIR, + logging_env=ENV_TOKENS['LOGGING_ENV'], + syslog_addr=(ENV_TOKENS['SYSLOG_SERVER'], 514), + debug=False) + +with open(ENV_ROOT / "repos.json") as repos_file: + REPOS = json.load(repos_file) + + +############################## SECURE AUTH ITEMS ############################### +# Secret things: passwords, access keys, etc. +with open(ENV_ROOT / "cms.auth.json") as auth_file: + AUTH_TOKENS = json.load(auth_file) + +AWS_ACCESS_KEY_ID = AUTH_TOKENS["AWS_ACCESS_KEY_ID"] +AWS_SECRET_ACCESS_KEY = AUTH_TOKENS["AWS_SECRET_ACCESS_KEY"] +DATABASES = AUTH_TOKENS['DATABASES'] +MODULESTORE = AUTH_TOKENS['MODULESTORE'] diff --git a/cms/envs/common.py b/cms/envs/common.py index 0196ddc9e5..3f8f4440c5 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -25,6 +25,9 @@ import os.path import os import errno import glob2 +import lms.envs.common +import hashlib +from collections import defaultdict from path import path ############################ FEATURE CONFIGURATION ############################# @@ -43,10 +46,8 @@ PROJECT_ROOT = path(__file__).abspath().dirname().dirname() # /mitx/cms REPO_ROOT = PROJECT_ROOT.dirname() COMMON_ROOT = REPO_ROOT / "common" ENV_ROOT = REPO_ROOT.dirname() # virtualenv dir /mitx is in -COURSES_ROOT = ENV_ROOT / "data" -# FIXME: To support multiple courses, we should walk the courses dir at startup -DATA_DIR = COURSES_ROOT +GITHUB_REPO_ROOT = ENV_ROOT / "data" sys.path.append(REPO_ROOT) sys.path.append(PROJECT_ROOT / 'djangoapps') @@ -61,9 +62,13 @@ MAKO_MODULE_DIR = tempfile.mkdtemp('mako') MAKO_TEMPLATES = {} MAKO_TEMPLATES['main'] = [ PROJECT_ROOT / 'templates', + COMMON_ROOT / 'templates', COMMON_ROOT / 'djangoapps' / 'pipeline_mako' / 'templates' ] +for namespace, template_dirs in lms.envs.common.MAKO_TEMPLATES.iteritems(): + MAKO_TEMPLATES['lms.' + namespace] = template_dirs + TEMPLATE_DIRS = ( PROJECT_ROOT / "templates", ) @@ -132,26 +137,32 @@ IGNORABLE_404_ENDS = ('favicon.ico') # Email EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' -DEFAULT_FROM_EMAIL = 'registration@mitx.mit.edu' -DEFAULT_FEEDBACK_EMAIL = 'feedback@mitx.mit.edu' +DEFAULT_FROM_EMAIL = 'registration@edx.org' +DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org' ADMINS = ( - ('MITx Admins', 'admin@mitx.mit.edu'), + ('edX Admins', 'admin@edx.org'), ) MANAGERS = ADMINS # Static content STATIC_URL = '/static/' ADMIN_MEDIA_PREFIX = '/static/admin/' -STATIC_ROOT = ENV_ROOT / "staticfiles" +STATIC_ROOT = ENV_ROOT / "staticfiles" -# FIXME: We should iterate through the courses we have, adding the static -# contents for each of them. (Right now we just use symlinks.) STATICFILES_DIRS = [ + COMMON_ROOT / "static", PROJECT_ROOT / "static", # This is how you would use the textbook images locally # ("book", ENV_ROOT / "book_images") ] +if os.path.isdir(GITHUB_REPO_ROOT): + STATICFILES_DIRS += [ + # TODO (cpennington): When courses aren't loaded from github, remove this + (course_dir, GITHUB_REPO_ROOT / course_dir) + for course_dir in os.listdir(GITHUB_REPO_ROOT) + if os.path.isdir(GITHUB_REPO_ROOT / course_dir) + ] # Locale/Internationalization TIME_ZONE = 'America/New_York' # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name @@ -166,51 +177,98 @@ MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage' STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +# Load javascript and css from all of the available descriptors, and +# prep it for use in pipeline js +from xmodule.x_module import XModuleDescriptor +from xmodule.raw_module import RawDescriptor +js_file_dir = PROJECT_ROOT / "static" / "coffee" / "module" +css_file_dir = PROJECT_ROOT / "static" / "sass" / "module" +module_styles_path = css_file_dir / "_module-styles.scss" + +for dir_ in (js_file_dir, css_file_dir): + try: + os.makedirs(dir_) + except OSError as exc: + if exc.errno == errno.EEXIST: + pass + else: + raise + +js_fragments = set() +css_fragments = defaultdict(set) +for descriptor in XModuleDescriptor.load_classes() + [RawDescriptor]: + descriptor_js = descriptor.get_javascript() + module_js = descriptor.module_class.get_javascript() + + for filetype in ('coffee', 'js'): + for idx, fragment in enumerate(descriptor_js.get(filetype, []) + module_js.get(filetype, [])): + js_fragments.add((idx, filetype, fragment)) + + for class_ in (descriptor, descriptor.module_class): + fragments = class_.get_css() + for filetype in ('sass', 'scss', 'css'): + for idx, fragment in enumerate(fragments.get(filetype, [])): + css_fragments[idx, filetype, fragment].add(class_.__name__) + +module_js_sources = [] +for idx, filetype, fragment in sorted(js_fragments): + path = js_file_dir / "{idx}-{hash}.{type}".format( + idx=idx, + hash=hashlib.md5(fragment).hexdigest(), + type=filetype) + with open(path, 'w') as js_file: + js_file.write(fragment) + module_js_sources.append(path.replace(PROJECT_ROOT / "static/", "")) + +css_imports = defaultdict(set) +for (idx, filetype, fragment), classes in sorted(css_fragments.items()): + fragment_name = "{idx}-{hash}.{type}".format( + idx=idx, + hash=hashlib.md5(fragment).hexdigest(), + type=filetype) + # Prepend _ so that sass just includes the files into a single file + with open(css_file_dir / '_' + fragment_name, 'w') as js_file: + js_file.write(fragment) + + for class_ in classes: + css_imports[class_].add(fragment_name) + +with open(module_styles_path, 'w') as module_styles: + for class_, fragment_names in css_imports.items(): + imports = "\n".join('@import "{0}";'.format(name) for name in fragment_names) + module_styles.write(""".xmodule_{class_} {{ {imports} }}""".format( + class_=class_, imports=imports + )) + PIPELINE_CSS = { 'base-style': { 'source_filenames': ['sass/base-style.scss'], - 'output_filename': 'css/base-style.css', + 'output_filename': 'css/cms-base-style.css', }, } PIPELINE_ALWAYS_RECOMPILE = ['sass/base-style.scss'] -from xmodule.x_module import XModuleDescriptor -from xmodule.raw_module import RawDescriptor -js_file_dir = PROJECT_ROOT / "static" / "coffee" / "module" -try: - os.makedirs(js_file_dir) -except OSError as exc: - if exc.errno == errno.EEXIST: - pass - else: - raise - -module_js_sources = [] -for xmodule in XModuleDescriptor.load_classes() + [RawDescriptor]: - js = xmodule.get_javascript() - for filetype in ('coffee', 'js'): - for idx, fragment in enumerate(js.get(filetype, [])): - path = os.path.join(js_file_dir, "{name}.{idx}.{type}".format( - name=xmodule.__name__, - idx=idx, - type=filetype)) - with open(path, 'w') as js_file: - js_file.write(fragment) - module_js_sources.append(path.replace(PROJECT_ROOT / "static/", "")) - PIPELINE_JS = { 'main': { - 'source_filenames': [pth.replace(PROJECT_ROOT / 'static/', '') for pth in glob2.glob(PROJECT_ROOT / 'static/coffee/src/**/*.coffee')], - 'output_filename': 'js/application.js', + 'source_filenames': [ + pth.replace(COMMON_ROOT / 'static/', '') + for pth + in glob2.glob(COMMON_ROOT / 'static/coffee/src/**/*.coffee') + ] + [ + pth.replace(PROJECT_ROOT / 'static/', '') + for pth + in glob2.glob(PROJECT_ROOT / 'static/coffee/src/**/*.coffee') + ], + 'output_filename': 'js/cms-application.js', }, 'module-js': { 'source_filenames': module_js_sources, - 'output_filename': 'js/modules.js', + 'output_filename': 'js/cms-modules.js', }, 'spec': { 'source_filenames': [pth.replace(PROJECT_ROOT / 'static/', '') for pth in glob2.glob(PROJECT_ROOT / 'static/coffee/spec/**/*.coffee')], - 'output_filename': 'js/spec.js' + 'output_filename': 'js/cms-spec.js' } } @@ -251,6 +309,7 @@ INSTALLED_APPS = ( # For CMS 'contentstore', + 'github_sync', 'student', # misleading name due to sharing with lms # For asset pipelining diff --git a/cms/envs/dev.py b/cms/envs/dev.py index 40139a8a22..4098263829 100644 --- a/cms/envs/dev.py +++ b/cms/envs/dev.py @@ -18,6 +18,7 @@ MODULESTORE = { 'host': 'localhost', 'db': 'xmodule', 'collection': 'modulestore', + 'fs_root': GITHUB_REPO_ROOT, } } } @@ -31,38 +32,24 @@ DATABASES = { REPOS = { 'edx4edx': { - 'path': DATA_DIR / "edx4edx", - 'org': 'edx', - 'course': 'edx4edx', - 'branch': 'for_cms', + 'branch': 'master', 'origin': 'git@github.com:MITx/edx4edx.git', }, - '6002x-fall-2012': { - 'path': DATA_DIR / '6002x-fall-2012', - 'org': 'mit.edu', - 'course': '6.002x', - 'branch': 'for_cms', - 'origin': 'git@github.com:MITx/6002x-fall-2012.git', + 'content-mit-6002x': { + 'branch': 'master', + #'origin': 'git@github.com:MITx/6002x-fall-2012.git', + 'origin': 'git@github.com:MITx/content-mit-6002x.git', }, '6.00x': { - 'path': DATA_DIR / '6.00x', - 'org': 'mit.edu', - 'course': '6.00x', - 'branch': 'for_cms', + 'branch': 'master', 'origin': 'git@github.com:MITx/6.00x.git', }, '7.00x': { - 'path': DATA_DIR / '7.00x', - 'org': 'mit.edu', - 'course': '7.00x', - 'branch': 'for_cms', + 'branch': 'master', 'origin': 'git@github.com:MITx/7.00x.git', }, '3.091x': { - 'path': DATA_DIR / '3.091x', - 'org': 'mit.edu', - 'course': '3.091x', - 'branch': 'for_cms', + 'branch': 'master', 'origin': 'git@github.com:MITx/3.091x.git', }, } @@ -89,3 +76,6 @@ CACHES = { 'KEY_FUNCTION': 'util.memcache.safe_key', } } + +# Make the keyedcache startup warnings go away +CACHE_TIMEOUT = 0 diff --git a/cms/envs/logsettings.py b/cms/envs/logsettings.py new file mode 100644 index 0000000000..31130e33c6 --- /dev/null +++ b/cms/envs/logsettings.py @@ -0,0 +1,95 @@ +import os +import os.path +import platform +import sys + +def get_logger_config(log_dir, + logging_env="no_env", + tracking_filename=None, + syslog_addr=None, + debug=False): + """Return the appropriate logging config dictionary. You should assign the + result of this to the LOGGING var in your settings. The reason it's done + this way instead of registering directly is because I didn't want to worry + about resetting the logging state if this is called multiple times when + settings are extended.""" + + # If we're given an explicit place to put tracking logs, we do that (say for + # debugging). However, logging is not safe for multiple processes hitting + # the same file. So if it's left blank, we dynamically create the filename + # based on the PID of this worker process. + if tracking_filename: + tracking_file_loc = os.path.join(log_dir, tracking_filename) + else: + pid = os.getpid() # So we can log which process is creating the log + tracking_file_loc = os.path.join(log_dir, "tracking_{0}.log".format(pid)) + + hostname = platform.node().split(".")[0] + syslog_format = ("[%(name)s][env:{logging_env}] %(levelname)s [{hostname} " + + " %(process)d] [%(filename)s:%(lineno)d] - %(message)s").format( + logging_env=logging_env, hostname=hostname) + + handlers = ['console'] if debug else ['console', 'syslogger', 'newrelic'] + + return { + 'version': 1, + 'formatters' : { + 'standard' : { + 'format' : '%(asctime)s %(levelname)s %(process)d [%(name)s] %(filename)s:%(lineno)d - %(message)s', + }, + 'syslog_format' : { 'format' : syslog_format }, + 'raw' : { 'format' : '%(message)s' }, + }, + 'handlers' : { + 'console' : { + 'level' : 'DEBUG' if debug else 'INFO', + 'class' : 'logging.StreamHandler', + 'formatter' : 'standard', + 'stream' : sys.stdout, + }, + 'syslogger' : { + 'level' : 'INFO', + 'class' : 'logging.handlers.SysLogHandler', + 'address' : syslog_addr, + 'formatter' : 'syslog_format', + }, + 'tracking' : { + 'level' : 'DEBUG', + 'class' : 'logging.handlers.WatchedFileHandler', + 'filename' : tracking_file_loc, + 'formatter' : 'raw', + }, + 'newrelic' : { + 'level': 'ERROR', + 'class': 'newrelic_logging.NewRelicHandler', + 'formatter': 'raw', + } + }, + 'loggers' : { + 'django' : { + 'handlers' : handlers, + 'propagate' : True, + 'level' : 'INFO' + }, + 'tracking' : { + 'handlers' : ['tracking'], + 'level' : 'DEBUG', + 'propagate' : False, + }, + '' : { + 'handlers' : handlers, + 'level' : 'DEBUG', + 'propagate' : False + }, + 'mitx' : { + 'handlers' : handlers, + 'level' : 'DEBUG', + 'propagate' : False + }, + 'keyedcache' : { + 'handlers' : handlers, + 'level' : 'DEBUG', + 'propagate' : False + }, + } + } diff --git a/cms/envs/test.py b/cms/envs/test.py index 2a867af91f..bce3c796cf 100644 --- a/cms/envs/test.py +++ b/cms/envs/test.py @@ -22,8 +22,21 @@ TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' TEST_ROOT = path('test_root') # Want static files in the same dir for running on jenkins. -STATIC_ROOT = TEST_ROOT / "staticfiles" +STATIC_ROOT = TEST_ROOT / "staticfiles" +GITHUB_REPO_ROOT = TEST_ROOT / "data" +COMMON_TEST_DATA_ROOT = COMMON_ROOT / "test" / "data" + +# TODO (cpennington): We need to figure out how envs/test.py can inject things into common.py so that we don't have to repeat this sort of thing +STATICFILES_DIRS = [ + COMMON_ROOT / "static", + PROJECT_ROOT / "static", +] +STATICFILES_DIRS += [ + (course_dir, COMMON_TEST_DATA_ROOT / course_dir) + for course_dir in os.listdir(COMMON_TEST_DATA_ROOT) + if os.path.isdir(COMMON_TEST_DATA_ROOT / course_dir) +] MODULESTORE = { 'default': { @@ -33,6 +46,7 @@ MODULESTORE = { 'host': 'localhost', 'db': 'test_xmodule', 'collection': 'modulestore', + 'fs_root': GITHUB_REPO_ROOT, } } } diff --git a/cms/static/coffee/src/main.coffee b/cms/static/coffee/src/main.coffee index b88bc7210b..57b6d1ae93 100644 --- a/cms/static/coffee/src/main.coffee +++ b/cms/static/coffee/src/main.coffee @@ -1,7 +1,11 @@ +AjaxPrefix.addAjaxPrefix(jQuery, -> CMS.prefix) + @CMS = Models: {} Views: {} + prefix: $("meta[name='path_prefix']").attr('content') + viewStack: [] start: (el) -> @@ -31,5 +35,13 @@ $ -> $.ajaxSetup headers : { 'X-CSRFToken': $.cookie 'csrftoken' } + dataType: 'json' + + window.onTouchBasedDevice = -> + navigator.userAgent.match /iPhone|iPod|iPad/i + + $('body').addClass 'touch-based-device' if onTouchBasedDevice() + CMS.start($('section.main-container')) + diff --git a/cms/static/coffee/src/models/module.coffee b/cms/static/coffee/src/models/module.coffee index 257eca411e..3abea41e35 100644 --- a/cms/static/coffee/src/models/module.coffee +++ b/cms/static/coffee/src/models/module.coffee @@ -4,10 +4,7 @@ class CMS.Models.Module extends Backbone.Model data: '' loadModule: (element) -> - try - @module = new window[@get('type')](element) - catch TypeError - console.error "Unable to load #{@get('type')}." if console + @module = XModule.loadModule($(element).find('.xmodule_edit')) editUrl: -> "/edit_item?#{$.param(id: @get('id'))}" diff --git a/cms/static/coffee/src/views/module.coffee b/cms/static/coffee/src/views/module.coffee index 5407204706..32540d845d 100644 --- a/cms/static/coffee/src/views/module.coffee +++ b/cms/static/coffee/src/views/module.coffee @@ -4,4 +4,10 @@ class CMS.Views.Module extends Backbone.View edit: (event) => event.preventDefault() - CMS.replaceView(new CMS.Views.ModuleEdit(model: new CMS.Models.Module(id: @$el.data('id'), type: @$el.data('type')))) + previewType = @$el.data('preview-type') + moduleType = @$el.data('type') + CMS.replaceView new CMS.Views.ModuleEdit + model: new CMS.Models.Module + id: @$el.data('id') + type: if moduleType == 'None' then null else moduleType + previewType: if previewType == 'None' then null else previewType diff --git a/cms/static/coffee/src/views/module_edit.coffee b/cms/static/coffee/src/views/module_edit.coffee index 16968a9126..d47bc3a90c 100644 --- a/cms/static/coffee/src/views/module_edit.coffee +++ b/cms/static/coffee/src/views/module_edit.coffee @@ -11,11 +11,21 @@ class CMS.Views.ModuleEdit extends Backbone.View @$el.load @model.editUrl(), => @model.loadModule(@el) + # Load preview modules + XModule.loadModules('display') + save: (event) -> event.preventDefault() - @model.save().success(-> + @model.save().done((previews) => alert("Your changes have been saved.") - ).error(-> + previews_section = @$el.find('.previews').empty() + $.each(previews, (idx, preview) => + preview_wrapper = $('
', class: 'preview').append preview + previews_section.append preview_wrapper + ) + + XModule.loadModules('display') + ).fail(-> alert("There was an error saving your changes. Please try again.") ) @@ -25,4 +35,10 @@ class CMS.Views.ModuleEdit extends Backbone.View editSubmodule: (event) -> event.preventDefault() - CMS.pushView(new CMS.Views.ModuleEdit(model: new CMS.Models.Module(id: $(event.target).data('id'), type: $(event.target).data('type')))) + previewType = $(event.target).data('preview-type') + moduleType = $(event.target).data('type') + CMS.pushView new CMS.Views.ModuleEdit + model: new CMS.Models.Module + id: $(event.target).data('id') + type: if moduleType == 'None' then null else moduleType + previewType: if previewType == 'None' then null else previewType diff --git a/cms/static/coffee/unit.coffee b/cms/static/coffee/unit.coffee deleted file mode 100644 index dda41fe42b..0000000000 --- a/cms/static/coffee/unit.coffee +++ /dev/null @@ -1,15 +0,0 @@ -class @Unit - constructor: (@element_id, @module_id) -> - @module = new window[$("##{@element_id}").attr('class')] 'module-html' - - $("##{@element_id} .save-update").click (event) => - event.preventDefault() - $.post("/save_item", { - id: @module_id - data: JSON.stringify(@module.save()) - }) - - $("##{@element_id} .cancel").click (event) => - event.preventDefault() - CMS.edit_item(@module_id) - diff --git a/cms/static/img/content-types/module.png b/cms/static/img/content-types/module.png new file mode 100644 index 0000000000..643c12d1d9 Binary files /dev/null and b/cms/static/img/content-types/module.png differ diff --git a/cms/static/img/menu.png b/cms/static/img/menu.png new file mode 100644 index 0000000000..7449b34c1c Binary files /dev/null and b/cms/static/img/menu.png differ diff --git a/cms/static/img/noise.png b/cms/static/img/noise.png new file mode 100644 index 0000000000..8fa5168293 Binary files /dev/null and b/cms/static/img/noise.png differ diff --git a/cms/static/sass/.gitignore b/cms/static/sass/.gitignore index b3a5267117..c8578e8cd3 100644 --- a/cms/static/sass/.gitignore +++ b/cms/static/sass/.gitignore @@ -1 +1,2 @@ *.css +module diff --git a/cms/static/sass/_base.scss b/cms/static/sass/_base.scss index 9cbc4ed048..cad315f6e4 100644 --- a/cms/static/sass/_base.scss +++ b/cms/static/sass/_base.scss @@ -5,11 +5,21 @@ $body-font-family: "Open Sans", "Lucida Grande", "Lucida Sans Unicode", "Lucida $body-font-size: 14px; $body-line-height: 20px; -$light-blue: #f0f8fa; +$light-blue: #f0f7fd; $dark-blue: #50545c; $bright-blue: #3c8ebf; $orange: #f96e5b; $yellow: #fff8af; +$cream: #F6EFD4; +$mit-red: #933; + +@mixin hide-text { + background-color: transparent; + border: 0; + color: transparent; + font: 0/0 a; + text-shadow: none; +} // Base html styles html { @@ -32,14 +42,18 @@ input { button, input[type="submit"], .button { background-color: $orange; - border: 0; + border: 1px solid darken($orange, 15%); + @include border-radius(4px); + @include box-shadow(inset 0 0 0 1px adjust-hue($orange, 20%), 0 1px 0 #fff); color: #fff; font-weight: bold; - padding: 8px 10px; + @include linear-gradient(adjust-hue($orange, 8%), $orange); + padding: 6px 20px; + text-shadow: 0 1px 0 darken($orange, 10%); -webkit-font-smoothing: antialiased; - &:hover { - background-color: shade($orange, 10%); + &:hover, &:focus { + @include box-shadow(inset 0 0 6px 1px adjust-hue($orange, 30%)); } } @@ -120,10 +134,10 @@ textarea { } } -.wip { - outline: 1px solid #f00 !important; - position: relative; -} +// .wip { +// outline: 1px solid #f00 !important; +// position: relative; +// } .hidden { display: none; diff --git a/cms/static/sass/_calendar.scss b/cms/static/sass/_calendar.scss index 4070766617..35609b2d56 100644 --- a/cms/static/sass/_calendar.scss +++ b/cms/static/sass/_calendar.scss @@ -1,13 +1,15 @@ section.cal { @include box-sizing(border-box); @include clearfix; - padding: 25px; + padding: 20px; > header { + display: none; @include clearfix; margin-bottom: 10px; opacity: .4; @include transition; + text-shadow: 0 1px 0 #fff; &:hover { opacity: 1; @@ -70,12 +72,15 @@ section.cal { ol { list-style: none; @include clearfix; - border-left: 1px solid lighten($dark-blue, 40%); - border-top: 1px solid lighten($dark-blue, 40%); + border: 1px solid lighten( $dark-blue , 30% ); + background: #FFF; width: 100%; @include box-sizing(border-box); margin: 0; padding: 0; + @include box-shadow(0 0 5px lighten($dark-blue, 45%)); + @include border-radius(3px); + overflow: hidden; > li { border-right: 1px solid lighten($dark-blue, 40%); @@ -84,6 +89,7 @@ section.cal { float: left; width: flex-grid(3) + ((flex-gutter() * 3) / 4); background-color: $light-blue; + @include box-shadow(inset 0 0 0 1px lighten($light-blue, 8%)); &:hover { li.create-module { @@ -91,6 +97,10 @@ section.cal { } } + &:nth-child(4n) { + border-right: 0; + } + header { border-bottom: 1px solid lighten($dark-blue, 40%); @include box-shadow(0 2px 2px $light-blue); @@ -128,6 +138,7 @@ section.cal { color: #888; border-bottom: 0; font-size: 12px; + @include box-shadow(none); } } } @@ -138,9 +149,11 @@ section.cal { padding: 0; li { - border-bottom: 1px solid darken($light-blue, 8%); - position: relative; + border-bottom: 1px solid darken($light-blue, 6%); + // @include box-shadow(0 1px 0 lighten($light-blue, 4%)); overflow: hidden; + position: relative; + text-shadow: 0 1px 0 #fff; &:hover { background-color: lighten($yellow, 14%); @@ -314,16 +327,13 @@ section.cal { @include box-sizing(border-box); opacity: .4; @include transition(); - background: darken($light-blue, 2%); &:hover { opacity: 1; width: flex-grid(5) + flex-gutter(); - background-color: transparent; + section.main-content { width: flex-grid(7); - opacity: .6; } } @@ -340,6 +350,7 @@ section.cal { display: block; li { + ul { display: inline; } @@ -351,6 +362,7 @@ section.cal { li { @include box-sizing(border-box); width: 100%; + border-right: 0; &.create-module { display: none; diff --git a/cms/static/sass/_content-types.scss b/cms/static/sass/_content-types.scss index 587646fb39..e85d2a5c24 100644 --- a/cms/static/sass/_content-types.scss +++ b/cms/static/sass/_content-types.scss @@ -53,3 +53,13 @@ @extend .content-type; background-image: url('../img/content-types/chapter.png'); } + +.module a:first-child { + @extend .content-type; + background-image: url('../img/content-types/module.png'); +} + +.module a:first-child { + @extend .content-type; + background-image: url('../img/content-types/module.png'); +} diff --git a/cms/static/sass/_index.scss b/cms/static/sass/_index.scss new file mode 100644 index 0000000000..a3e210b558 --- /dev/null +++ b/cms/static/sass/_index.scss @@ -0,0 +1,80 @@ +body.index { + > header { + display: none; + } + + > h1 { + font-weight: 300; + color: lighten($dark-blue, 40%); + text-shadow: 0 1px 0 #fff; + -webkit-font-smoothing: antialiased; + max-width: 600px; + text-align: center; + margin: 80px auto 30px; + } + + section.main-container { + border-right: 3px; + background: #FFF; + max-width: 600px; + margin: 0 auto; + display: block; + @include box-sizing(border-box); + border: 1px solid lighten( $dark-blue , 30% ); + @include border-radius(3px); + overflow: hidden; + @include bounce-in-animation(.8s); + + header { + border-bottom: 1px solid lighten($dark-blue, 50%); + @include linear-gradient(#fff, lighten($dark-blue, 62%)); + @include clearfix(); + @include box-shadow( 0 2px 0 $light-blue, inset 0 -1px 0 #fff); + text-shadow: 0 1px 0 #fff; + + h1 { + font-size: 14px; + padding: 8px 20px; + float: left; + color: $dark-blue; + margin: 0; + } + + a { + float: right; + padding: 8px 20px; + border-left: 1px solid lighten($dark-blue, 50%); + @include box-shadow( inset -1px 0 0 #fff); + font-weight: bold; + font-size: 22px; + line-height: 1; + color: $dark-blue; + } + } + + ol { + list-style: none; + margin: 0; + padding: 0; + + li { + border-bottom: 1px solid lighten($dark-blue, 50%); + + a { + display: block; + padding: 10px 20px; + + &:hover { + color: $dark-blue; + background: lighten($yellow, 10%); + text-shadow: 0 1px 0 #fff; + } + } + + &:last-child { + border-bottom: none; + } + } + } + } +} diff --git a/cms/static/sass/_keyframes.scss b/cms/static/sass/_keyframes.scss new file mode 100644 index 0000000000..7661f18980 --- /dev/null +++ b/cms/static/sass/_keyframes.scss @@ -0,0 +1,27 @@ +@mixin bounce-in { + 0% { + opacity: 0; + @include transform(scale(.3)); + } + + 50% { + opacity: 1; + @include transform(scale(1.05)); + } + + 100% { + @include transform(scale(1)); + } +} + +@-moz-keyframes bounce-in { @include bounce-in(); } +@-webkit-keyframes bounce-in { @include bounce-in(); } +@-o-keyframes bounce-in { @include bounce-in(); } +@keyframes bounce-in { @include bounce-in();} + +@mixin bounce-in-animation($duration, $timing: ease-in-out) { + @include animation-name(bounce-in); + @include animation-duration($duration); + @include animation-timing-function($timing); + @include animation-fill-mode(both); +} diff --git a/cms/static/sass/_layout.scss b/cms/static/sass/_layout.scss index f4c9f63ea6..43308a973c 100644 --- a/cms/static/sass/_layout.scss +++ b/cms/static/sass/_layout.scss @@ -2,6 +2,8 @@ body { @include clearfix(); height: 100%; font: 14px $body-font-family; + background-color: lighten($dark-blue, 62%); + background-image: url('/static/img/noise.png'); > section { display: table; @@ -11,28 +13,53 @@ body { > header { background: $dark-blue; + @include background-image(url('/static/img/noise.png'), linear-gradient(lighten($dark-blue, 10%), $dark-blue)); + border-bottom: 1px solid darken($dark-blue, 15%); + @include box-shadow(inset 0 -1px 0 lighten($dark-blue, 10%)); + @include box-sizing(border-box); color: #fff; display: block; float: none; - padding: 8px 25px; + padding: 0 20px; + text-shadow: 0 -1px 0 darken($dark-blue, 15%); width: 100%; - @include box-sizing(border-box); - -webkit-font-smoothing: antialiased; nav { @include clearfix; - h2 { - font-size: 14px; - text-transform: uppercase; + > a { + @include hide-text; + background: url('/static/img/menu.png') 0 center no-repeat; + border-right: 1px solid darken($dark-blue, 10%); + @include box-shadow(1px 0 0 lighten($dark-blue, 10%)); + display: block; float: left; - margin: 0 15px 0 0; + height: 19px; + padding: 8px 10px 8px 0; + width: 14px; + + &:hover, &:focus { + opacity: .7; + } + } + + h2 { + border-right: 1px solid darken($dark-blue, 10%); + @include box-shadow(1px 0 0 lighten($dark-blue, 10%)); + float: left; + font-size: 14px; + margin: 0; + text-transform: uppercase; + -webkit-font-smoothing: antialiased; a { color: #fff; + padding: 8px 20px; + display: block; &:hover { - color: rgba(#fff, .6); + background-color: rgba(darken($dark-blue, 15%), .5); + color: $yellow; } } } @@ -48,21 +75,35 @@ body { ul { float: left; margin: 0; + padding: 0; + @include clearfix; &.user-nav { float: right; + border-left: 1px solid darken($dark-blue, 10%); } li { - @include inline-block(); + border-right: 1px solid darken($dark-blue, 10%); + float: left; + @include box-shadow(1px 0 0 lighten($dark-blue, 10%)); a { - padding: 8px 10px; + padding: 8px 20px; display: block; - margin: -8px 0; &:hover { - background-color: darken($dark-blue, 15%); + background-color: rgba(darken($dark-blue, 15%), .5); + color: $yellow; + } + + &.new-module { + &:before { + @include inline-block; + content: "+"; + font-weight: bold; + margin-right: 10px; + } } } } @@ -76,8 +117,9 @@ body { @include box-sizing(border-box); width: flex-grid(9) + flex-gutter(); float: left; - @include box-shadow( -2px 0 0 darken($light-blue, 3%)); + @include box-shadow( -2px 0 0 lighten($dark-blue, 55%)); @include transition(); + background: #FFF; } } } diff --git a/cms/static/sass/_section.scss b/cms/static/sass/_section.scss index fa08e02901..97818326be 100644 --- a/cms/static/sass/_section.scss +++ b/cms/static/sass/_section.scss @@ -1,6 +1,7 @@ section#unit-wrapper { section.filters { @include clearfix; + display: none; opacity: .4; margin-bottom: 10px; @include transition; @@ -52,22 +53,22 @@ section#unit-wrapper { display: table; border: 1px solid lighten($dark-blue, 40%); width: 100%; + @include border-radius(3px); + @include box-shadow(0 0 4px lighten($dark-blue, 50%)); section { header { background: #fff; padding: 6px; border-bottom: 1px solid lighten($dark-blue, 60%); - border-top: 1px solid lighten($dark-blue, 60%); - margin-top: -1px; @include clearfix; h2 { color: $bright-blue; - float: left; - font-size: 12px; + // float: left; + font-size: 14px; letter-spacing: 1px; - line-height: 19px; + // line-height: 20px; text-transform: uppercase; margin: 0; } @@ -172,7 +173,6 @@ section#unit-wrapper { padding: 0; li { - border-bottom: 1px solid darken($light-blue, 8%); background: $light-blue; &:last-child { @@ -181,6 +181,7 @@ section#unit-wrapper { &.new-module a { background-color: darken($light-blue, 2%); + border-bottom: 1px solid darken($light-blue, 8%); &:hover { background-color: lighten($yellow, 10%); @@ -199,6 +200,7 @@ section#unit-wrapper { li { padding: 6px; border-collapse: collapse; + border-bottom: 1px solid darken($light-blue, 8%); position: relative; &:last-child { diff --git a/cms/static/sass/_unit.scss b/cms/static/sass/_unit.scss index d8613be3c2..0ab0d1064d 100644 --- a/cms/static/sass/_unit.scss +++ b/cms/static/sass/_unit.scss @@ -1,19 +1,19 @@ section#unit-wrapper { > header { - border-bottom: 2px solid $dark-blue; + border-bottom: 1px solid lighten($dark-blue, 50%); + @include linear-gradient(#fff, lighten($dark-blue, 62%)); @include clearfix(); - @include box-shadow( 0 2px 0 darken($light-blue, 3%)); - padding: 6px 20px; + @include box-shadow( 0 2px 0 $light-blue, inset 0 -1px 0 #fff); + text-shadow: 0 1px 0 #fff; section { float: left; + padding: 10px 20px; h1 { - font-size: 16px; - text-transform: uppercase; - letter-spacing: 1px; + font-size: 18px; @include inline-block(); - color: $bright-blue; + color: $dark-blue; margin: 0; } @@ -22,32 +22,41 @@ section#unit-wrapper { margin: 0; a { - text-indent: -9999px; @include inline-block(); - width: 1px; - height: 100%; + font-size: 12px; } } } div { - float: right; + @include clearfix; color: #666; + float: right; + padding: 6px 20px; a { - display: block; @include inline-block; - &.cancel { - margin-right: 20px; - font-style: italic; - font-size: 12px; - } + &.cancel { + margin-right: 20px; + font-style: italic; + font-size: 12px; + padding: 6px 0; + } - &.save-update { - @extend .button; - margin: -6px -21px -6px 0; - } + &.save-update { + padding: 6px 20px; + @include border-radius(3px); + border: 1px solid lighten($dark-blue, 40%); + @include box-shadow(inset 0 0 0 1px #fff); + color: $dark-blue; + @include linear-gradient(lighten($dark-blue, 60%), lighten($dark-blue, 55%)); + + &:hover, &:focus { + @include linear-gradient(lighten($dark-blue, 58%), lighten($dark-blue, 53%)); + @include box-shadow(inset 0 0 6px 1px #fff); + } + } } } } diff --git a/cms/static/sass/base-style.scss b/cms/static/sass/base-style.scss index 6d45331576..49a51a59fb 100644 --- a/cms/static/sass/base-style.scss +++ b/cms/static/sass/base-style.scss @@ -1,6 +1,9 @@ @import 'bourbon/bourbon'; @import 'vendor/normalize'; +@import 'keyframes'; @import 'base', 'layout', 'content-types'; @import 'calendar'; -@import 'section', 'unit'; +@import 'section', 'unit', 'index'; + +@import 'module/module-styles.scss'; diff --git a/cms/templates/base.html b/cms/templates/base.html index 935917b11a..dba7df95b9 100644 --- a/cms/templates/base.html +++ b/cms/templates/base.html @@ -6,38 +6,35 @@ - % if settings.MITX_FEATURES['USE_DJANGO_PIPELINE']: <%static:css group='base-style'/> - % else: - - % endif <%block name="title"></%block> + + - + <%include file="widgets/header.html"/> + <%include file="courseware_vendor_js.html"/> - - % if settings.MITX_FEATURES['USE_DJANGO_PIPELINE']: <%static:js group='main'/> - % else: - - % endif - <%static:js group='module-js'/> + <%block name="content"> diff --git a/cms/templates/course_index.html b/cms/templates/course_index.html index 92b5cc296c..e490ad7817 100644 --- a/cms/templates/course_index.html +++ b/cms/templates/course_index.html @@ -1,5 +1,6 @@ <%inherit file="base.html" /> <%block name="title">Course Manager +<%include file="widgets/header.html"/> <%block name="content">
diff --git a/cms/templates/emails/activation_email.txt b/cms/templates/emails/activation_email.txt index eca5effdd6..209ff98335 100644 --- a/cms/templates/emails/activation_email.txt +++ b/cms/templates/emails/activation_email.txt @@ -1,12 +1,11 @@ -Someone, hopefully you, signed up for an account for edX's on-line -offering of "${ course_title}" using this email address. If it was -you, and you'd like to activate and use your account, copy and paste -this address into your web browser's address bar: +Thank you for signing up for edX! To activate your account, +please copy and paste this address into your web browser's +address bar: % if is_secure: https://${ site }/activate/${ key } % else: - http://edx4edx.mitx.mit.edu/activate/${ key } + http://${ site }/activate/${ key } % endif If you didn't request this, you don't need to do anything; you won't diff --git a/cms/templates/emails/activation_email_subject.txt b/cms/templates/emails/activation_email_subject.txt index c25c006a81..495e0b5fad 100644 --- a/cms/templates/emails/activation_email_subject.txt +++ b/cms/templates/emails/activation_email_subject.txt @@ -1 +1 @@ -Your account for edX's on-line ${course_title} course +Your account for edX diff --git a/cms/templates/index.html b/cms/templates/index.html index 2998cb8bd6..6e3cb648ae 100644 --- a/cms/templates/index.html +++ b/cms/templates/index.html @@ -1,8 +1,16 @@ <%inherit file="base.html" /> +<%block name="bodyclass">index <%block name="title">Courses <%block name="content"> +

edX Course Management

+
+
+

Courses

+ + +
+
    %for course, url in courses:
  1. ${course}
  2. diff --git a/cms/templates/registration/activation_complete.html b/cms/templates/registration/activation_complete.html new file mode 100644 index 0000000000..30e731e8cc --- /dev/null +++ b/cms/templates/registration/activation_complete.html @@ -0,0 +1,30 @@ +<%! from django.core.urlresolvers import reverse %> +<%inherit file="../base.html" /> + +<%namespace name='static' file='../static_content.html'/> + +
    + +
    + %if not already_active: +

    Activation Complete!

    + %else: +

    Account already active!

    + %endif +
    + +

    + %if not already_active: + Thanks for activating your account. + %else: + This account has already been activated. + %endif + + %if user_logged_in: + Visit your dashboard to see your courses. + %else: + You can now login. + %endif +

    +
    +
    diff --git a/cms/templates/signup.html b/cms/templates/signup.html index d3eedc8070..f22e3c7950 100644 --- a/cms/templates/signup.html +++ b/cms/templates/signup.html @@ -10,10 +10,10 @@
    -
    +
    -
    -
    + +
    @@ -64,17 +64,17 @@ }); } - $('form#enroll_form').submit(function(e) { + $('form#register_form').submit(function(e) { e.preventDefault(); - var submit_data = $('#enroll_form').serialize(); + var submit_data = $('#register_form').serialize(); postJSON('/create_account', submit_data, function(json) { if(json.success) { - $('#enroll').html(json.value); + $('#register').html(json.value); } else { - $('#enroll_error').html(json.value).stop().css("background-color", "#933").animate({ backgroundColor: "#333"}, 2000); + $('#register_error').html(json.value).stop().css("background-color", "#933").animate({ backgroundColor: "#333"}, 2000); } } ); diff --git a/cms/templates/unit.html b/cms/templates/unit.html index cd921d2be2..6aa780d42a 100644 --- a/cms/templates/unit.html +++ b/cms/templates/unit.html @@ -1,4 +1,4 @@ -
    +

    ${name}

    @@ -12,6 +12,47 @@
    +
    +
    + + Settings +
    +
    +
    +
    Last modified:
    +
    mm/dd/yy
    +
    By
    +
    Anant Agarwal
    +
    +
    +
    +
    +

    Tags:

    +

    Click to edit

    +
    +
    +

    Goal

    +

    Click to edit

    +
    +
    +
    ${contents} +
    + % for preview in previews: +
    + ${preview} +
    + % endfor +
    + + <%include file="widgets/notes.html"/>
    diff --git a/cms/templates/widgets/header.html b/cms/templates/widgets/header.html index c1c05671fa..c0b9f9e3af 100644 --- a/cms/templates/widgets/header.html +++ b/cms/templates/widgets/header.html @@ -1,13 +1,14 @@ <%! from django.core.urlresolvers import reverse %>
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")}),!0):!1)},_mouseStart:function(b){var c=this.options;return this.helper=this._createHelper(b),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment(),this._trigger("start",b)===!1?(this._clear(),!1):(this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b),!0)},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1)return this._mouseUp({}),!1;this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";return a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);var d=this.element[0],e=!1;while(d&&(d=d.parentNode))d==document&&(e=!0);if(!e&&this.options.helper==="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var f=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){f._trigger("stop",b)!==!1&&f._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){return this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b),a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;return a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)}),c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;return d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute"),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.lefth[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.toph[3]?j-this.offset.click.toph[2]?k-this.offset.click.left=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f=k&&g<=l||h>=k&&h<=l||gl)&&(e>=i&&e<=j||f>=i&&f<=j||ej);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();g:for(var h=0;h=k&&g<=l||h>=k&&h<=l||gl)&&(e>=i&&e<=j||f>=i&&f<=j||ej);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();g:for(var h=0;h
    ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e');h.css({zIndex:c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){if(c.disabled)return;a(this).removeClass("ui-resizable-autohide"),b._handles.show()},function(){if(c.disabled)return;b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}return this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement),this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");return a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b),!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);return l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui()),!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}return a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;return p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null),a},_proportionallyResize:function(){var b=this.options;if(!this._proportionallyResizeElements.length)return;var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.21"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!i)return;e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/d.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*d.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.widget("ui.resizable",a.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var b=this,c=this.options;this.element.addClass("ui-resizable"),a.extend(this,{_aspectRatio:!!c.aspectRatio,aspectRatio:c.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:c.helper||c.ghost||c.animate?c.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(a('
    ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e');h.css({zIndex:c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){if(c.disabled)return;a(this).removeClass("ui-resizable-autohide"),b._handles.show()},function(){if(c.disabled)return;b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}return this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement),this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");return a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b),!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);return l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui()),!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}return a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove(),!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;return p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null),a},_proportionallyResize:function(){var b=this.options;if(!this._proportionallyResizeElements.length)return;var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.22"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!i)return;e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/d.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*d.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.ui.selectable.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("
    ")},destroy:function(){return this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy(),this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(this.options.disabled)return;var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");return d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element}),!1}})},_mouseDrag:function(b){var c=this;this.dragged=!0;if(this.options.disabled)return;var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}return this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!i||i.element==c.element[0])return;var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.righth||i.bottome&&i.rightf&&i.bottom")},destroy:function(){return this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy(),this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(this.options.disabled)return;var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");return d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element}),!1}})},_mouseDrag:function(b){var c=this;this.dragged=!0;if(this.options.disabled)return;var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}return this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!i||i.element==c.element[0])return;var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.righth||i.bottome&&i.rightf&&i.bottom *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f)return e=a(this),!1});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}return this.currentItem=e,this._removeCurrentsFromItems(),!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));return a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b),!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}return this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(b,c){if(!b)return;a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"="),d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")}),d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+jf&&b+ka[this.floating?"width":"height"]?l:f0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){return this._refreshItems(a),this.refreshPositions(),this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return e||(b.style.visibility="hidden"),b},update:function(a,b){if(e&&!d.forcePlaceholderSize)return;b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!c)return;if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.containers[d].floating?this.items[i].item.offset().left:this.items[i].item.offset().top;Math.abs(j-h)0?"down":"up")}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;return d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height()),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.leftthis.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.topthis.containment[3]?h-this.offset.click.topthis.containment[2]?i-this.offset.click.left=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit(),this.ready=!0},destroy:function(){a.Widget.prototype.destroy.call(this),this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--)this.items[b].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f)return e=a(this),!1});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}return this.currentItem=e,this._removeCurrentsFromItems(),!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));return a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b),!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}return this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(b,c){if(!b)return;a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"="),d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];return b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")}),d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+jf&&b+ka[this.floating?"width":"height"]?l:f0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){return this._refreshItems(a),this.refreshPositions(),this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return e||(b.style.visibility="hidden"),b},update:function(a,b){if(e&&!d.forcePlaceholderSize)return;b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!c)return;if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.containers[d].floating?this.items[i].item.offset().left:this.items[i].item.offset().top;Math.abs(j-h)0?"down":"up")}if(!g&&!this.options.dropOnEmpty)return;this.currentContainer=this.containers[d],g?this._rearrange(b,g,null,!0):this._rearrange(b,null,this.containers[d].element,!0),this._trigger("change",b,this._uiHash()),this.containers[d]._trigger("change",b,this._uiHash(this)),this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1}},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b,this.currentItem])):c.helper=="clone"?this.currentItem.clone():this.currentItem;return d.parents("body").length||a(c.appendTo!="parent"?c.appendTo:this.currentItem[0].parentNode)[0].appendChild(d[0]),d[0]==this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(d[0].style.width==""||c.forceHelperSize)&&d.width(this.currentItem.width()),(d[0].style.height==""||c.forceHelperSize)&&d.height(this.currentItem.height()),d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)){var c=a(b.containment)[0],d=a(b.containment).offset(),e=a(c).css("overflow")!="hidden";this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(e?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(e?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName);this.cssPosition=="relative"&&(this.scrollParent[0]==document||this.scrollParent[0]==this.offsetParent[0])&&(this.offset.relative=this._getRelativeOffset());var f=b.pageX,g=b.pageY;if(this.originalPosition){this.containment&&(b.pageX-this.offset.click.leftthis.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.topthis.containment[3]?h-this.offset.click.topthis.containment[2]?i-this.offset.click.left=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");return(b.autoHeight||b.fillHeight)&&c.css("height",""),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(this.options.disabled||b.altKey||b.ctrlKey)return;var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}return f?(a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus(),!1):!0},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];return this._clickHandler({target:b},b),this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(d.disabled)return;if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!g)return;return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(this.running)return;this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data)}}),a.extend(a.ui.accordion,{version:"1.8.21",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size()){b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);return}if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:!0,clearStyle:!1,collapsible:!1,event:"click",fillSpace:!1,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:!1,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var b=this,c=b.options;b.running=0,b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"),b.headers=b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){if(c.disabled)return;a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){if(c.disabled)return;a(this).removeClass("ui-state-focus")}),b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(c.navigation){var d=b.element.find("a").filter(c.navigationFilter).eq(0);if(d.length){var e=d.closest(".ui-accordion-header");e.length?b.active=e:b.active=d.closest(".ui-accordion-content").prev()}}b.active=b._findActive(b.active||c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"),b.active.next().addClass("ui-accordion-content-active"),b._createIcons(),b.resize(),b.element.attr("role","tablist"),b.headers.attr("role","tab").bind("keydown.accordion",function(a){return b._keydown(a)}).next().attr("role","tabpanel"),b.headers.not(b.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide(),b.active.length?b.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):b.headers.eq(0).attr("tabIndex",0),a.browser.safari||b.headers.find("a").attr("tabIndex",-1),c.event&&b.headers.bind(c.event.split(" ").join(".accordion ")+".accordion",function(a){b._clickHandler.call(b,a,this),a.preventDefault()})},_createIcons:function(){var b=this.options;b.icons&&(a("").addClass("ui-icon "+b.icons.header).prependTo(this.headers),this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected),this.element.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.children(".ui-icon").remove(),this.element.removeClass("ui-accordion-icons")},destroy:function(){var b=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"),this.headers.find("a").removeAttr("tabIndex"),this._destroyIcons();var c=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");return(b.autoHeight||b.fillHeight)&&c.css("height",""),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b=="active"&&this.activate(c),b=="icons"&&(this._destroyIcons(),c&&this._createIcons()),b=="disabled"&&this.headers.add(this.headers.next())[c?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(b){if(this.options.disabled||b.altKey||b.ctrlKey)return;var c=a.ui.keyCode,d=this.headers.length,e=this.headers.index(b.target),f=!1;switch(b.keyCode){case c.RIGHT:case c.DOWN:f=this.headers[(e+1)%d];break;case c.LEFT:case c.UP:f=this.headers[(e-1+d)%d];break;case c.SPACE:case c.ENTER:this._clickHandler({target:b.target},b.target),b.preventDefault()}return f?(a(b.target).attr("tabIndex",-1),a(f).attr("tabIndex",0),f.focus(),!1):!0},resize:function(){var b=this.options,c;if(b.fillSpace){if(a.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height(),a.browser.msie&&this.element.parent().css("overflow",d),this.headers.each(function(){c-=a(this).outerHeight(!0)}),this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else b.autoHeight&&(c=0,this.headers.next().each(function(){c=Math.max(c,a(this).height("").height())}).height(c));return this},activate:function(a){this.options.active=a;var b=this._findActive(a)[0];return this._clickHandler({target:b},b),this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===!1?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,c){var d=this.options;if(d.disabled)return;if(!b.target){if(!d.collapsible)return;this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),this.active.next().addClass("ui-accordion-content-active");var e=this.active.next(),f={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:e},g=this.active=a([]);this._toggle(g,e,f);return}var h=a(b.currentTarget||c),i=h[0]===this.active[0];d.active=d.collapsible&&i?!1:this.headers.index(h);if(this.running||!d.collapsible&&i)return;var j=this.active,g=h.next(),e=this.active.next(),f={options:d,newHeader:i&&d.collapsible?a([]):h,oldHeader:this.active,newContent:i&&d.collapsible?a([]):g,oldContent:e},k=this.headers.index(this.active[0])>this.headers.index(h[0]);this.active=i?a([]):h,this._toggle(g,e,f,i,k),j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header),i||(h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected),h.next().addClass("ui-accordion-content-active"));return},_toggle:function(b,c,d,e,f){var g=this,h=g.options;g.toShow=b,g.toHide=c,g.data=d;var i=function(){if(!g)return;return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data),g.running=c.size()===0?b.size():c.size();if(h.animated){var j={};h.collapsible&&e?j={toShow:a([]),toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace}:j={toShow:b,toHide:c,complete:i,down:f,autoHeight:h.autoHeight||h.fillSpace},h.proxied||(h.proxied=h.animated),h.proxiedDuration||(h.proxiedDuration=h.duration),h.animated=a.isFunction(h.proxied)?h.proxied(j):h.proxied,h.duration=a.isFunction(h.proxiedDuration)?h.proxiedDuration(j):h.proxiedDuration;var k=a.ui.accordion.animations,l=h.duration,m=h.animated;m&&!k[m]&&!a.easing[m]&&(m="slide"),k[m]||(k[m]=function(a){this.slide(a,{easing:m,duration:l||700})}),k[m](j)}else h.collapsible&&e?b.toggle():(c.hide(),b.show()),i(!0);c.prev().attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).blur(),b.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(this.running)return;this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""}),this.toHide.removeClass("ui-accordion-content-active"),this.toHide.length&&(this.toHide.parent()[0].className=this.toHide.parent()[0].className),this._trigger("change",null,this.data)}}),a.extend(a.ui.accordion,{version:"1.8.22",animations:{slide:function(b,c){b=a.extend({easing:"swing",duration:300},b,c);if(!b.toHide.size()){b.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},b);return}if(!b.toShow.size()){b.toHide.animate({height:"hide",paddingTop:"hide",paddingBottom:"hide"},b);return}var d=b.toShow.css("overflow"),e=0,f={},g={},h=["height","paddingTop","paddingBottom"],i,j=b.toShow;i=j[0].style.width,j.width(j.parent().width()-parseFloat(j.css("paddingLeft"))-parseFloat(j.css("paddingRight"))-(parseFloat(j.css("borderLeftWidth"))||0)-(parseFloat(j.css("borderRightWidth"))||0)),a.each(h,function(c,d){g[d]="hide";var e=(""+a.css(b.toShow[0],d)).match(/^([\d+-.]+)(.*)$/);f[d]={value:e[1],unit:e[2]||"px"}}),b.toShow.css({height:0,overflow:"hidden"}).show(),b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g,{step:function(a,c){c.prop=="height"&&(e=c.end-c.start===0?0:(c.now-c.start)/(c.end-c.start)),b.toShow[0].style[c.prop]=e*f[c.prop].value+f[c.prop].unit},duration:b.duration,easing:b.easing,complete:function(){b.autoHeight||b.toShow.css("height",""),b.toShow.css({width:i,overflow:d}),b.complete()}})},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1e3:200})}}})})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.ui.autocomplete.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){var c=0;a.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var b=this,c=this.element[0].ownerDocument,d;this.isMultiLine=this.element.is("textarea"),this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(b.options.disabled||b.element.propAttr("readOnly"))return;d=!1;var e=a.ui.keyCode;switch(c.keyCode){case e.PAGE_UP:b._move("previousPage",c);break;case e.PAGE_DOWN:b._move("nextPage",c);break;case e.UP:b._keyEvent("previous",c);break;case e.DOWN:b._keyEvent("next",c);break;case e.ENTER:case e.NUMPAD_ENTER:b.menu.active&&(d=!0,c.preventDefault());case e.TAB:if(!b.menu.active)return;b.menu.select(c);break;case e.ESCAPE:b.element.val(b.term),b.close(c);break;default:clearTimeout(b.searching),b.searching=setTimeout(function(){b.term!=b.element.val()&&(b.selectedItem=null,b.search(null,c))},b.options.delay)}}).bind("keypress.autocomplete",function(a){d&&(d=!1,a.preventDefault())}).bind("focus.autocomplete",function(){if(b.options.disabled)return;b.selectedItem=null,b.previous=b.element.val()}).bind("blur.autocomplete",function(a){if(b.options.disabled)return;clearTimeout(b.searching),b.closing=setTimeout(function(){b.close(a),b._change(a)},150)}),this._initSource(),this.menu=a("
      ").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,c,d;a.isArray(this.options.source)?(c=this.options.source,this.source=function(b,d){d(a.ui.autocomplete.filter(c,b.term))}):typeof this.options.source=="string"?(d=this.options.source,this.source=function(c,e){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:d,data:c,dataType:"json",success:function(a,b){e(a)},error:function(){e([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length").data("item.autocomplete",c).append(a("").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible")){this.search(null,b);return}if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)},widget:function(){return this.menu.element},_keyEvent:function(a,b){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(a,b),b.preventDefault()}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})})(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(!a(c.target).closest(".ui-menu-item a").length)return;c.preventDefault(),b.select(c)}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){if(!this.active)return;this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active){this.activate(c,this.element.children(b));return}var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:first")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()").addClass("ui-autocomplete").appendTo(a(this.options.appendTo||"body",c)[0]).mousedown(function(c){var d=b.menu.element[0];a(c.target).closest(".ui-menu-item").length||setTimeout(function(){a(document).one("mousedown",function(c){c.target!==b.element[0]&&c.target!==d&&!a.ui.contains(d,c.target)&&b.close()})},1),setTimeout(function(){clearTimeout(b.closing)},13)}).menu({focus:function(a,c){var d=c.item.data("item.autocomplete");!1!==b._trigger("focus",a,{item:d})&&/^key/.test(a.originalEvent.type)&&b.element.val(d.value)},selected:function(a,d){var e=d.item.data("item.autocomplete"),f=b.previous;b.element[0]!==c.activeElement&&(b.element.focus(),b.previous=f,setTimeout(function(){b.previous=f,b.selectedItem=e},1)),!1!==b._trigger("select",a,{item:e})&&b.element.val(e.value),b.term=b.element.val(),b.close(a),b.selectedItem=e},blur:function(a,c){b.menu.element.is(":visible")&&b.element.val()!==b.term&&b.element.val(b.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu"),a.fn.bgiframe&&this.menu.element.bgiframe(),b.beforeunloadHandler=function(){b.element.removeAttr("autocomplete")},a(window).bind("beforeunload",b.beforeunloadHandler)},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"),this.menu.element.remove(),a(window).unbind("beforeunload",this.beforeunloadHandler),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments),b==="source"&&this._initSource(),b==="appendTo"&&this.menu.element.appendTo(a(c||"body",this.element[0].ownerDocument)[0]),b==="disabled"&&c&&this.xhr&&this.xhr.abort()},_initSource:function(){var b=this,c,d;a.isArray(this.options.source)?(c=this.options.source,this.source=function(b,d){d(a.ui.autocomplete.filter(c,b.term))}):typeof this.options.source=="string"?(d=this.options.source,this.source=function(c,e){b.xhr&&b.xhr.abort(),b.xhr=a.ajax({url:d,data:c,dataType:"json",success:function(a,b){e(a)},error:function(){e([])}})}):this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val(),this.term=this.element.val();if(a.length").data("item.autocomplete",c).append(a("").text(c.label)).appendTo(b)},_move:function(a,b){if(!this.menu.element.is(":visible")){this.search(null,b);return}if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term),this.menu.deactivate();return}this.menu[a](b)},widget:function(){return this.menu.element},_keyEvent:function(a,b){if(!this.isMultiLine||this.menu.element.is(":visible"))this._move(a,b),b.preventDefault()}}),a.extend(a.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(b,c){var d=new RegExp(a.ui.autocomplete.escapeRegex(c),"i");return a.grep(b,function(a){return d.test(a.label||a.value||a)})}})})(jQuery),function(a){a.widget("ui.menu",{_create:function(){var b=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(!a(c.target).closest(".ui-menu-item a").length)return;c.preventDefault(),b.select(c)}),this.refresh()},refresh:function(){var b=this,c=this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem");c.children("a").addClass("ui-corner-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(function(){b.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.scrollTop(),e=this.element.height();c<0?this.element.scrollTop(d+c):c>=e&&this.element.scrollTop(d+c-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end(),this._trigger("focus",a,{item:b})},deactivate:function(){if(!this.active)return;this.active.children("a").removeClass("ui-state-hover").removeAttr("id"),this._trigger("blur"),this.active=null},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(!this.active){this.activate(c,this.element.children(b));return}var d=this.active[a+"All"](".ui-menu-item").eq(0);d.length?this.activate(c,d):this.activate(c,this.element.children(b))},nextPage:function(b){if(this.hasScroll()){if(!this.active||this.last()){this.activate(b,this.element.children(".ui-menu-item:first"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c-d+a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:last")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(b){if(this.hasScroll()){if(!this.active||this.first()){this.activate(b,this.element.children(".ui-menu-item:last"));return}var c=this.active.offset().top,d=this.element.height(),e=this.element.children(".ui-menu-item").filter(function(){var b=a(this).offset().top-c+d-a(this).height();return b<10&&b>-10});e.length||(e=this.element.children(".ui-menu-item:first")),this.activate(b,e)}else this.activate(b,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend(""),d.secondary&&b.append(""),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){var c,d,e,f,g="ui-button ui-widget ui-state-default ui-corner-all",h="ui-state-hover ui-state-active ",i="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",j=function(){var b=a(this).find(":ui-button");setTimeout(function(){b.button("refresh")},1)},k=function(b){var c=b.name,d=b.form,e=a([]);return c&&(d?e=a(d).find("[name='"+c+"']"):e=a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form})),e};a.widget("ui.button",{options:{disabled:null,text:!0,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",j),typeof this.options.disabled!="boolean"?this.options.disabled=!!this.element.propAttr("disabled"):this.element.propAttr("disabled",this.options.disabled),this._determineButtonType(),this.hasTitle=!!this.buttonElement.attr("title");var b=this,h=this.options,i=this.type==="checkbox"||this.type==="radio",l="ui-state-hover"+(i?"":" ui-state-active"),m="ui-state-focus";h.label===null&&(h.label=this.buttonElement.html()),this.buttonElement.addClass(g).attr("role","button").bind("mouseenter.button",function(){if(h.disabled)return;a(this).addClass("ui-state-hover"),this===c&&a(this).addClass("ui-state-active")}).bind("mouseleave.button",function(){if(h.disabled)return;a(this).removeClass(l)}).bind("click.button",function(a){h.disabled&&(a.preventDefault(),a.stopImmediatePropagation())}),this.element.bind("focus.button",function(){b.buttonElement.addClass(m)}).bind("blur.button",function(){b.buttonElement.removeClass(m)}),i&&(this.element.bind("change.button",function(){if(f)return;b.refresh()}),this.buttonElement.bind("mousedown.button",function(a){if(h.disabled)return;f=!1,d=a.pageX,e=a.pageY}).bind("mouseup.button",function(a){if(h.disabled)return;if(d!==a.pageX||e!==a.pageY)f=!0})),this.type==="checkbox"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).toggleClass("ui-state-active"),b.buttonElement.attr("aria-pressed",b.element[0].checked)}):this.type==="radio"?this.buttonElement.bind("click.button",function(){if(h.disabled||f)return!1;a(this).addClass("ui-state-active"),b.buttonElement.attr("aria-pressed","true");var c=b.element[0];k(c).not(c).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed","false")}):(this.buttonElement.bind("mousedown.button",function(){if(h.disabled)return!1;a(this).addClass("ui-state-active"),c=this,a(document).one("mouseup",function(){c=null})}).bind("mouseup.button",function(){if(h.disabled)return!1;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(b){if(h.disabled)return!1;(b.keyCode==a.ui.keyCode.SPACE||b.keyCode==a.ui.keyCode.ENTER)&&a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")}),this.buttonElement.is("a")&&this.buttonElement.keyup(function(b){b.keyCode===a.ui.keyCode.SPACE&&a(this).click()})),this._setOption("disabled",h.disabled),this._resetButton()},_determineButtonType:function(){this.element.is(":checkbox")?this.type="checkbox":this.element.is(":radio")?this.type="radio":this.element.is("input")?this.type="input":this.type="button";if(this.type==="checkbox"||this.type==="radio"){var a=this.element.parents().filter(":last"),b="label[for='"+this.element.attr("id")+"']";this.buttonElement=a.find(b),this.buttonElement.length||(a=a.length?a.siblings():this.element.siblings(),this.buttonElement=a.filter(b),this.buttonElement.length||(this.buttonElement=a.find(b))),this.element.addClass("ui-helper-hidden-accessible");var c=this.element.is(":checked");c&&this.buttonElement.addClass("ui-state-active"),this.buttonElement.attr("aria-pressed",c)}else this.buttonElement=this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible"),this.buttonElement.removeClass(g+" "+h+" "+i).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()),this.hasTitle||this.buttonElement.removeAttr("title"),a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);if(b==="disabled"){c?this.element.propAttr("disabled",!0):this.element.propAttr("disabled",!1);return}this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b),this.type==="radio"?k(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed","true"):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed","false")}):this.type==="checkbox"&&(this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed","true"):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed","false"))},_resetButton:function(){if(this.type==="input"){this.options.label&&this.element.val(this.options.label);return}var b=this.buttonElement.removeClass(i),c=a("",this.element[0].ownerDocument).addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary,f=[];d.primary||d.secondary?(this.options.text&&f.push("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary")),d.primary&&b.prepend(""),d.secondary&&b.append(""),this.options.text||(f.push(e?"ui-button-icons-only":"ui-button-icon-only"),this.hasTitle||b.attr("title",c))):f.push("ui-button-text-only"),b.addClass(f.join(" "))}}),a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c),a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){var b=this.element.css("direction")==="rtl";this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b?"ui-corner-right":"ui-corner-left").end().filter(":last").addClass(b?"ui-corner-left":"ui-corner-right").end().end()},destroy:function(){this.element.removeClass("ui-buttonset"),this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy"),a.Widget.prototype.destroy.call(this)}})})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.ui.dialog.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){var c="ui-dialog ui-widget ui-widget-content ui-corner-all ",d={buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},e={maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},f=a.attrFn||{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0,click:!0};a.widget("ui.dialog",{options:{autoOpen:!0,buttons:{},closeOnEscape:!0,closeText:"close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:!1,maxWidth:!1,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",collision:"fit",using:function(b){var c=a(this).css(b).offset().top;c<0&&a(this).css("top",b.top-c)}},resizable:!0,show:null,stack:!0,title:"",width:300,zIndex:1e3},_create:function(){this.originalTitle=this.element.attr("title"),typeof this.originalTitle!="string"&&(this.originalTitle=""),this.options.title=this.options.title||this.originalTitle;var b=this,d=b.options,e=d.title||" ",f=a.ui.dialog.getTitleId(b.element),g=(b.uiDialog=a("
      ")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("
      ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){return b.close(a),!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;return a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle),a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1===c._trigger("beforeClose",b))return;return c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d),c},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;return e.modal&&!b||!e.stack&&!e.modal?d._trigger("focus",c):(e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c),d)},open:function(){if(this._isOpen)return;var b=this,c=b.options,d=b.uiDialog;return b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode!==a.ui.keyCode.TAB)return;var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey)return d.focus(1),!1;if(b.target===d[0]&&b.shiftKey)return e.focus(1),!1}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open"),b},_createButtons:function(b){var c=this,d=!1,e=a("
      ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=a("
      ").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(g);a.each(d,function(a,b){if(a==="click")return;a in f?e[a](b):e.attr(a,b)}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||" "))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.21",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");return b||(this.uuid+=1,b=this.uuid),"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});return a.fn.bgiframe&&c.bgiframe(),this.instances.push(c),c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;return a.browser.msie&&a.browser.version<7?(b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),b")).appendTo(document.body).hide().addClass(c+d.dialogClass).css({zIndex:d.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(c){d.closeOnEscape&&!c.isDefaultPrevented()&&c.keyCode&&c.keyCode===a.ui.keyCode.ESCAPE&&(b.close(c),c.preventDefault())}).attr({role:"dialog","aria-labelledby":f}).mousedown(function(a){b.moveToTop(!1,a)}),h=b.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g),i=(b.uiDialogTitlebar=a("
      ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),j=a('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){j.addClass("ui-state-hover")},function(){j.removeClass("ui-state-hover")}).focus(function(){j.addClass("ui-state-focus")}).blur(function(){j.removeClass("ui-state-focus")}).click(function(a){return b.close(a),!1}).appendTo(i),k=(b.uiDialogTitlebarCloseText=a("")).addClass("ui-icon ui-icon-closethick").text(d.closeText).appendTo(j),l=a("").addClass("ui-dialog-title").attr("id",f).html(e).prependTo(i);a.isFunction(d.beforeclose)&&!a.isFunction(d.beforeClose)&&(d.beforeClose=d.beforeclose),i.find("*").add(i).disableSelection(),d.draggable&&a.fn.draggable&&b._makeDraggable(),d.resizable&&a.fn.resizable&&b._makeResizable(),b._createButtons(d.buttons),b._isOpen=!1,a.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;return a.overlay&&a.overlay.destroy(),a.uiDialog.hide(),a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"),a.uiDialog.remove(),a.originalTitle&&a.element.attr("title",a.originalTitle),a},widget:function(){return this.uiDialog},close:function(b){var c=this,d,e;if(!1===c._trigger("beforeClose",b))return;return c.overlay&&c.overlay.destroy(),c.uiDialog.unbind("keypress.ui-dialog"),c._isOpen=!1,c.options.hide?c.uiDialog.hide(c.options.hide,function(){c._trigger("close",b)}):(c.uiDialog.hide(),c._trigger("close",b)),a.ui.dialog.overlay.resize(),c.options.modal&&(d=0,a(".ui-dialog").each(function(){this!==c.uiDialog[0]&&(e=a(this).css("z-index"),isNaN(e)||(d=Math.max(d,e)))}),a.ui.dialog.maxZ=d),c},isOpen:function(){return this._isOpen},moveToTop:function(b,c){var d=this,e=d.options,f;return e.modal&&!b||!e.stack&&!e.modal?d._trigger("focus",c):(e.zIndex>a.ui.dialog.maxZ&&(a.ui.dialog.maxZ=e.zIndex),d.overlay&&(a.ui.dialog.maxZ+=1,d.overlay.$el.css("z-index",a.ui.dialog.overlay.maxZ=a.ui.dialog.maxZ)),f={scrollTop:d.element.scrollTop(),scrollLeft:d.element.scrollLeft()},a.ui.dialog.maxZ+=1,d.uiDialog.css("z-index",a.ui.dialog.maxZ),d.element.attr(f),d._trigger("focus",c),d)},open:function(){if(this._isOpen)return;var b=this,c=b.options,d=b.uiDialog;return b.overlay=c.modal?new a.ui.dialog.overlay(b):null,b._size(),b._position(c.position),d.show(c.show),b.moveToTop(!0),c.modal&&d.bind("keydown.ui-dialog",function(b){if(b.keyCode!==a.ui.keyCode.TAB)return;var c=a(":tabbable",this),d=c.filter(":first"),e=c.filter(":last");if(b.target===e[0]&&!b.shiftKey)return d.focus(1),!1;if(b.target===d[0]&&b.shiftKey)return e.focus(1),!1}),a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(),b._isOpen=!0,b._trigger("open"),b},_createButtons:function(b){var c=this,d=!1,e=a("
      ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=a("
      ").addClass("ui-dialog-buttonset").appendTo(e);c.uiDialog.find(".ui-dialog-buttonpane").remove(),typeof b=="object"&&b!==null&&a.each(b,function(){return!(d=!0)}),d&&(a.each(b,function(b,d){d=a.isFunction(d)?{click:d,text:b}:d;var e=a('').click(function(){d.click.apply(c.element[0],arguments)}).appendTo(g);a.each(d,function(a,b){if(a==="click")return;a in f?e[a](b):e.attr(a,b)}),a.fn.button&&e.button()}),e.appendTo(c.uiDialog))},_makeDraggable:function(){function f(a){return{position:a.position,offset:a.offset}}var b=this,c=b.options,d=a(document),e;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(d,g){e=c.height==="auto"?"auto":a(this).height(),a(this).height(a(this).height()).addClass("ui-dialog-dragging"),b._trigger("dragStart",d,f(g))},drag:function(a,c){b._trigger("drag",a,f(c))},stop:function(g,h){c.position=[h.position.left-d.scrollLeft(),h.position.top-d.scrollTop()],a(this).removeClass("ui-dialog-dragging").height(e),b._trigger("dragStop",g,f(h)),a.ui.dialog.overlay.resize()}})},_makeResizable:function(c){function h(a){return{originalPosition:a.originalPosition,originalSize:a.originalSize,position:a.position,size:a.size}}c=c===b?this.options.resizable:c;var d=this,e=d.options,f=d.uiDialog.css("position"),g=typeof c=="string"?c:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:g,start:function(b,c){a(this).addClass("ui-dialog-resizing"),d._trigger("resizeStart",b,h(c))},resize:function(a,b){d._trigger("resize",a,h(b))},stop:function(b,c){a(this).removeClass("ui-dialog-resizing"),e.height=a(this).height(),e.width=a(this).width(),d._trigger("resizeStop",b,h(c)),a.ui.dialog.overlay.resize()}}).css("position",f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(b){var c=[],d=[0,0],e;if(b){if(typeof b=="string"||typeof b=="object"&&"0"in b)c=b.split?b.split(" "):[b[0],b[1]],c.length===1&&(c[1]=c[0]),a.each(["left","top"],function(a,b){+c[a]===c[a]&&(d[a]=c[a],c[a]=b)}),b={my:c.join(" "),at:c.join(" "),offset:d.join(" ")};b=a.extend({},a.ui.dialog.prototype.options.position,b)}else b=a.ui.dialog.prototype.options.position;e=this.uiDialog.is(":visible"),e||this.uiDialog.show(),this.uiDialog.css({top:0,left:0}).position(a.extend({of:window},b)),e||this.uiDialog.hide()},_setOptions:function(b){var c=this,f={},g=!1;a.each(b,function(a,b){c._setOption(a,b),a in d&&(g=!0),a in e&&(f[a]=b)}),g&&this._size(),this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",f)},_setOption:function(b,d){var e=this,f=e.uiDialog;switch(b){case"beforeclose":b="beforeClose";break;case"buttons":e._createButtons(d);break;case"closeText":e.uiDialogTitlebarCloseText.text(""+d);break;case"dialogClass":f.removeClass(e.options.dialogClass).addClass(c+d);break;case"disabled":d?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case"draggable":var g=f.is(":data(draggable)");g&&!d&&f.draggable("destroy"),!g&&d&&e._makeDraggable();break;case"position":e._position(d);break;case"resizable":var h=f.is(":data(resizable)");h&&!d&&f.resizable("destroy"),h&&typeof d=="string"&&f.resizable("option","handles",d),!h&&d!==!1&&e._makeResizable(d);break;case"title":a(".ui-dialog-title",e.uiDialogTitlebar).html(""+(d||" "))}a.Widget.prototype._setOption.apply(e,arguments)},_size:function(){var b=this.options,c,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0}),b.minWidth>b.width&&(b.width=b.minWidth),c=this.uiDialog.css({height:"auto",width:b.width}).height(),d=Math.max(0,b.minHeight-c);if(b.height==="auto")if(a.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();var f=this.element.css("height","auto").height();e||this.uiDialog.hide(),this.element.height(Math.max(f,d))}else this.element.height(Math.max(b.height-c,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}}),a.extend(a.ui.dialog,{version:"1.8.22",uuid:0,maxZ:0,getTitleId:function(a){var b=a.attr("id");return b||(this.uuid+=1,b=this.uuid),"ui-dialog-title-"+b},overlay:function(b){this.$el=a.ui.dialog.overlay.create(b)}}),a.extend(a.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(b){this.instances.length===0&&(setTimeout(function(){a.ui.dialog.overlay.instances.length&&a(document).bind(a.ui.dialog.overlay.events,function(b){if(a(b.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});return a.fn.bgiframe&&c.bgiframe(),this.instances.push(c),c},destroy:function(b){var c=a.inArray(b,this.instances);c!=-1&&this.oldInstances.push(this.instances.splice(c,1)[0]),this.instances.length===0&&a([document,window]).unbind(".dialog-overlay"),b.remove();var d=0;a.each(this.instances,function(){d=Math.max(d,this.css("z-index"))}),this.maxZ=d},height:function(){var b,c;return a.browser.msie&&a.browser.version<7?(b=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight),c=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight),b").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;ic&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i),j===!1?!1:(this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0,!0))},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);return this._slide(a,this._handleIndex,c),!1},_mouseStop:function(a){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;return this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e,this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};return this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c1){this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);return}if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;return Math.abs(c)*2>=b&&(d+=c>0?b:-b),parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.21"})})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){var c=5;a.widget("ui.slider",a.ui.mouse,{widgetEventPrefix:"slide",options:{animate:!1,distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null},_create:function(){var b=this,d=this.options,e=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f="",g=d.values&&d.values.length||1,h=[];this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget"+" ui-widget-content"+" ui-corner-all"+(d.disabled?" ui-slider-disabled ui-disabled":"")),this.range=a([]),d.range&&(d.range===!0&&(d.values||(d.values=[this._valueMin(),this._valueMin()]),d.values.length&&d.values.length!==2&&(d.values=[d.values[0],d.values[0]])),this.range=a("
      ").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(d.range==="min"||d.range==="max"?" ui-slider-range-"+d.range:"")));for(var i=e.length;ic&&(f=c,g=a(this),i=b)}),c.range===!0&&this.values(1)===c.min&&(i+=1,g=a(this.handles[i])),j=this._start(b,i),j===!1?!1:(this._mouseSliding=!0,h._handleIndex=i,g.addClass("ui-state-active").focus(),k=g.offset(),l=!a(b.target).parents().andSelf().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:b.pageX-k.left-g.width()/2,top:b.pageY-k.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(b,i,e),this._animateOff=!0,!0))},_mouseStart:function(a){return!0},_mouseDrag:function(a){var b={x:a.pageX,y:a.pageY},c=this._normValueFromMouse(b);return this._slide(a,this._handleIndex,c),!1},_mouseStop:function(a){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(a,this._handleIndex),this._change(a,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b,c,d,e,f;return this.orientation==="horizontal"?(b=this.elementSize.width,c=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(b=this.elementSize.height,c=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),d=c/b,d>1&&(d=1),d<0&&(d=0),this.orientation==="vertical"&&(d=1-d),e=this._valueMax()-this._valueMin(),f=this._valueMin()+d*e,this._trimAlignValue(f)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};return this.options.values&&this.options.values.length&&(c.value=this.values(b),c.values=this.values()),this._trigger("start",a,c)},_slide:function(a,b,c){var d,e,f;this.options.values&&this.options.values.length?(d=this.values(b?0:1),this.options.values.length===2&&this.options.range===!0&&(b===0&&c>d||b===1&&c1){this.options.values[b]=this._trimAlignValue(c),this._refreshValue(),this._change(null,b);return}if(!arguments.length)return this._values();if(!a.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(b):this.value();d=this.options.values,e=arguments[0];for(f=0;f=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b,d=a-c;return Math.abs(c)*2>=b&&(d+=c>0?b:-b),parseFloat(d.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var b=this.options.range,c=this.options,d=this,e=this._animateOff?!1:c.animate,f,g={},h,i,j,k;this.options.values&&this.options.values.length?this.handles.each(function(b,i){f=(d.values(b)-d._valueMin())/(d._valueMax()-d._valueMin())*100,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",a(this).stop(1,1)[e?"animate":"css"](g,c.animate),d.options.range===!0&&(d.orientation==="horizontal"?(b===0&&d.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({width:f-h+"%"},{queue:!1,duration:c.animate})):(b===0&&d.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},c.animate),b===1&&d.range[e?"animate":"css"]({height:f-h+"%"},{queue:!1,duration:c.animate}))),h=f}):(i=this.value(),j=this._valueMin(),k=this._valueMax(),f=k!==j?(i-j)/(k-j)*100:0,g[d.orientation==="horizontal"?"left":"bottom"]=f+"%",this.handle.stop(1,1)[e?"animate":"css"](g,c.animate),b==="min"&&this.orientation==="horizontal"&&this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},c.animate),b==="max"&&this.orientation==="horizontal"&&this.range[e?"animate":"css"]({width:100-f+"%"},{queue:!1,duration:c.animate}),b==="min"&&this.orientation==="vertical"&&this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},c.animate),b==="max"&&this.orientation==="vertical"&&this.range[e?"animate":"css"]({height:100-f+"%"},{queue:!1,duration:c.animate}))}}),a.extend(a.ui.slider,{version:"1.8.22"})})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.ui.tabs.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){function e(){return++c}function f(){return++d}var c=0,d=0;a.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:!1,cookie:null,collapsible:!1,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"
      ",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
    • #{label}
    • "},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash)return e.selected=a,!1}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1)return this.blur(),!1;e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected"))return e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur(),!1;if(!f.length)return e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur(),!1}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){return typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$='"+a+"']"))),a},destroy:function(){var b=this.options;return this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie),this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);return j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e])),this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();return d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0])),this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)==-1)return;return this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b])),this},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;return a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a]))),this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;return this.anchors.eq(a).trigger(this.options.event+".tabs"),this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}return this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs"),this},abort:function(){return this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup(),this},url:function(a,b){return this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b),this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.21"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
    • #{label}
    • "},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash)return e.selected=a,!1}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1)return this.blur(),!1;e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected"))return e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur(),!1;if(!f.length)return e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur(),!1}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){return typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$='"+a+"']"))),a},destroy:function(){var b=this.options;return this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie),this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);return j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e])),this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();return d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0])),this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)==-1)return;return this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b])),this},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;return a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a]))),this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;return this.anchors.eq(a).trigger(this.options.event+".tabs"),this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}return this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs"),this},abort:function(){return this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup(),this},url:function(a,b){return this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b),this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.22"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a'))}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);if(!c.length)return;c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);if($.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])||!d.length)return;d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover")})}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}$.extend($.ui,{datepicker:{version:"1.8.21"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('
      ')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);if(c.hasClass(this.markerClassName))return;this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$(''+c+""),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('').addClass(this._triggerClass).html(g==""?f:$("").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]),!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;db&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName))return;c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block")},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$(''),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f),this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(d){$.datepicker.log(d)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if($.datepicker._isDisabledDatepicker(a)||$.datepicker._lastInput==a)return;var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){return e|=$(this).css("position")=="fixed",!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a));var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!b||a&&b!=$.data(a,PROP_NAME))return;if(this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.datepicker._tidyDialog(b)};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,e):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,e),c||e(),this._datepickerShowing=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!$.datepicker._curInst)return;var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);if(this._isDisabledDatepicker(d[0]))return;this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e)},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if($(d).hasClass(this._unselectableClass)||this._isDisabledDatepicker(e[0]))return;var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();return b.setMonth(0),b.setDate(1),Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1-1){j=1,k=l;do{var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}while(!0)}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+112?a.getHours()+2:0),a):null},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&pp)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?''+q+"":e?"":''+q+"",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?''+s+"":e?"":''+s+"",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'",x=d?'
      '+(c?w:"")+(this._isInRange(a,v)?'":"")+(c?"":w)+"
      ":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='
      '+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'
      '+"";var R=z?'":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="=5?' class="ui-datepicker-week-end"':"")+">"+''+C[T]+""}Q+=R+"";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z";var _=z?'":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Ym;_+='",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+""}n++,n>11&&(n=0,o++),Q+="
      '+this._get(a,"weekHeader")+"
      '+this._get(a,"calculateWeek")(Y)+""+(bb&&!G?" ":bc?''+Y.getDate()+"":''+Y.getDate()+"")+"
      "+(j?""+(g[0]>0&&N==g[1]-1?'
      ':""):""),M+=Q}K+=M}return K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'':""),a._keyEvent=!1,K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='
      ',m="";if(f||!i)m+=''+g[b]+"";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+=''+c+"";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='",l+=a.yearshtml,a.yearshtml=null}}return l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="
      ",l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&bd?d:e,e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));return b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth())),this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");return b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10),{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return typeof a!="string"||a!="isDisabled"&&a!="getDate"&&a!="widget"?a=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b)):this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)}):$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.21",window["DP_jQuery_"+dpuuid]=$})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function($,undefined){function Datepicker(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},$.extend(this._defaults,this.regional[""]),this.dpDiv=bindHover($('
      '))}function bindHover(a){var b="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return a.bind("mouseout",function(a){var c=$(a.target).closest(b);if(!c.length)return;c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(c){var d=$(c.target).closest(b);if($.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.input[0])||!d.length)return;d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d.addClass("ui-state-hover"),d.hasClass("ui-datepicker-prev")&&d.addClass("ui-datepicker-prev-hover"),d.hasClass("ui-datepicker-next")&&d.addClass("ui-datepicker-next-hover")})}function extendRemove(a,b){$.extend(a,b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}function isArray(a){return a&&($.browser.safari&&typeof a=="object"&&a.length||a.constructor&&a.constructor.toString().match(/\Array\(\)/))}$.extend($.ui,{datepicker:{version:"1.8.22"}});var PROP_NAME="datepicker",dpuuid=(new Date).getTime(),instActive;$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline=nodeName=="div"||nodeName=="span";target.id||(this.uuid+=1,target.id="dp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),nodeName=="input"?this._connectDatepicker(target,inst):inline&&this._inlineDatepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:b?bindHover($('
      ')):this.dpDiv}},_connectDatepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]);if(c.hasClass(this.markerClassName))return;this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),this._autoSize(b),$.data(a,PROP_NAME,b),b.settings.disabled&&this._disableDatepicker(a)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$(''+c+""),a[d?"before":"after"](b.append)),a.unbind("focus",this._showDatepicker),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");(e=="focus"||e=="both")&&a.focus(this._showDatepicker);if(e=="button"||e=="both"){var f=this._get(b,"buttonText"),g=this._get(b,"buttonImage");b.trigger=$(this._get(b,"buttonImageOnly")?$("").addClass(this._triggerClass).attr({src:g,alt:f,title:f}):$('').addClass(this._triggerClass).html(g==""?f:$("").attr({src:g,alt:f,title:f}))),a[d?"before":"after"](b.trigger),b.trigger.click(function(){return $.datepicker._datepickerShowing&&$.datepicker._lastInput==a[0]?$.datepicker._hideDatepicker():$.datepicker._datepickerShowing&&$.datepicker._lastInput!=a[0]?($.datepicker._hideDatepicker(),$.datepicker._showDatepicker(a[0])):$.datepicker._showDatepicker(a[0]),!1})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var d=function(a){var b=0,c=0;for(var d=0;db&&(b=a[d].length,c=d);return c};b.setMonth(d(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort"))),b.setDate(d(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName))return;c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(a,c,d){b.settings[c]=d}).bind("getData.datepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setDate(b,this._getDefaultDate(b),!0),this._updateDatepicker(b),this._updateAlternate(b),b.settings.disabled&&this._disableDatepicker(a),b.dpDiv.css("display","block")},_dialogDatepicker:function(a,b,c,d,e){var f=this._dialogInst;if(!f){this.uuid+=1;var g="dp"+this.uuid;this._dialogInput=$(''),this._dialogInput.keydown(this._doKeyDown),$("body").append(this._dialogInput),f=this._dialogInst=this._newInst(this._dialogInput,!1),f.settings={},$.data(this._dialogInput[0],PROP_NAME,f)}extendRemove(f.settings,d||{}),b=b&&b.constructor==Date?this._formatDate(f,b):b,this._dialogInput.val(b),this._pos=e?e.length?e:[e.pageX,e.pageY]:null;if(!this._pos){var h=document.documentElement.clientWidth,i=document.documentElement.clientHeight,j=document.documentElement.scrollLeft||document.body.scrollLeft,k=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[h/2-100+j,i/2-150+k]}return this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),f.settings.onSelect=c,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),$.data(this._dialogInput[0],PROP_NAME,f),this},_destroyDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),d=="input"?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):(d=="div"||d=="span")&&b.removeClass(this.markerClassName).empty()},_enableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!1,c.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().removeClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b})},_disableDatepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(!b.hasClass(this.markerClassName))return;var d=a.nodeName.toLowerCase();if(d=="input")a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"});else if(d=="div"||d=="span"){var e=b.children("."+this._inlineClass);e.children().addClass("ui-state-disabled"),e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=a},_isDisabledDatepicker:function(a){if(!a)return!1;for(var b=0;b-1}},_doKeyUp:function(a){var b=$.datepicker._getInst(a.target);if(b.input.val()!=b.lastVal)try{var c=$.datepicker.parseDate($.datepicker._get(b,"dateFormat"),b.input?b.input.val():null,$.datepicker._getFormatConfig(b));c&&($.datepicker._setDateFromField(b),$.datepicker._updateAlternate(b),$.datepicker._updateDatepicker(b))}catch(d){$.datepicker.log(d)}return!0},_showDatepicker:function(a){a=a.target||a,a.nodeName.toLowerCase()!="input"&&(a=$("input",a.parentNode)[0]);if($.datepicker._isDisabledDatepicker(a)||$.datepicker._lastInput==a)return;var b=$.datepicker._getInst(a);$.datepicker._curInst&&$.datepicker._curInst!=b&&($.datepicker._curInst.dpDiv.stop(!0,!0),b&&$.datepicker._datepickerShowing&&$.datepicker._hideDatepicker($.datepicker._curInst.input[0]));var c=$.datepicker._get(b,"beforeShow"),d=c?c.apply(a,[a,b]):{};if(d===!1)return;extendRemove(b.settings,d),b.lastVal=null,$.datepicker._lastInput=a,$.datepicker._setDateFromField(b),$.datepicker._inDialog&&(a.value=""),$.datepicker._pos||($.datepicker._pos=$.datepicker._findPos(a),$.datepicker._pos[1]+=a.offsetHeight);var e=!1;$(a).parents().each(function(){return e|=$(this).css("position")=="fixed",!e}),e&&$.browser.opera&&($.datepicker._pos[0]-=document.documentElement.scrollLeft,$.datepicker._pos[1]-=document.documentElement.scrollTop);var f={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null,b.dpDiv.empty(),b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.datepicker._updateDatepicker(b),f=$.datepicker._checkOffset(b,f,e),b.dpDiv.css({position:$.datepicker._inDialog&&$.blockUI?"static":e?"fixed":"absolute",display:"none",left:f.left+"px",top:f.top+"px"});if(!b.inline){var g=$.datepicker._get(b,"showAnim"),h=$.datepicker._get(b,"duration"),i=function(){var a=b.dpDiv.find("iframe.ui-datepicker-cover");if(!!a.length){var c=$.datepicker._getBorders(b.dpDiv);a.css({left:-c[0],top:-c[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex($(a).zIndex()+1),$.datepicker._datepickerShowing=!0,$.effects&&$.effects[g]?b.dpDiv.show(g,$.datepicker._get(b,"showOptions"),h,i):b.dpDiv[g||"show"](g?h:null,i),(!g||!h)&&i(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.datepicker._curInst=b}},_updateDatepicker:function(a){var b=this;b.maxRows=4;var c=$.datepicker._getBorders(a.dpDiv);instActive=a,a.dpDiv.empty().append(this._generateHTML(a)),this._attachHandlers(a);var d=a.dpDiv.find("iframe.ui-datepicker-cover");!d.length||d.css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}),a.dpDiv.find("."+this._dayOverClass+" a").mouseover();var e=this._getNumberOfMonths(a),f=e[1],g=17;a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),f>1&&a.dpDiv.addClass("ui-datepicker-multi-"+f).css("width",g*f+"em"),a.dpDiv[(e[0]!=1||e[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi"),a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),a==$.datepicker._curInst&&$.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var h=a.yearshtml;setTimeout(function(){h===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml),h=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var d=a.dpDiv.outerWidth(),e=a.dpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+(c?0:$(document).scrollLeft()),i=document.documentElement.clientHeight+(c?0:$(document).scrollTop());return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){var b=this._getInst(a),c=this._get(b,"isRTL");while(a&&(a.type=="hidden"||a.nodeType!=1||$.expr.filters.hidden(a)))a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_hideDatepicker:function(a){var b=this._curInst;if(!b||a&&b!=$.data(a,PROP_NAME))return;if(this._datepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.datepicker._tidyDialog(b)};$.effects&&$.effects[c]?b.dpDiv.hide(c,$.datepicker._get(b,"showOptions"),d,e):b.dpDiv[c=="slideDown"?"slideUp":c=="fadeIn"?"fadeOut":"hide"](c?d:null,e),c||e(),this._datepickerShowing=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.dpDiv))),this._inDialog=!1}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(!$.datepicker._curInst)return;var b=$(a.target),c=$.datepicker._getInst(b[0]);(b[0].id!=$.datepicker._mainDivId&&b.parents("#"+$.datepicker._mainDivId).length==0&&!b.hasClass($.datepicker.markerClassName)&&!b.closest("."+$.datepicker._triggerClass).length&&$.datepicker._datepickerShowing&&(!$.datepicker._inDialog||!$.blockUI)||b.hasClass($.datepicker.markerClassName)&&$.datepicker._curInst!=c)&&$.datepicker._hideDatepicker()},_adjustDate:function(a,b,c){var d=$(a),e=this._getInst(d[0]);if(this._isDisabledDatepicker(d[0]))return;this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c),this._updateDatepicker(e)},_gotoToday:function(a){var b=$(a),c=this._getInst(b[0]);if(this._get(c,"gotoCurrent")&&c.currentDay)c.selectedDay=c.currentDay,c.drawMonth=c.selectedMonth=c.currentMonth,c.drawYear=c.selectedYear=c.currentYear;else{var d=new Date;c.selectedDay=d.getDate(),c.drawMonth=c.selectedMonth=d.getMonth(),c.drawYear=c.selectedYear=d.getFullYear()}this._notifyChange(c),this._adjustDate(b)},_selectMonthYear:function(a,b,c){var d=$(a),e=this._getInst(d[0]);e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10),this._notifyChange(e),this._adjustDate(d)},_selectDay:function(a,b,c,d){var e=$(a);if($(d).hasClass(this._unselectableClass)||this._isDisabledDatepicker(e[0]))return;var f=this._getInst(e[0]);f.selectedDay=f.currentDay=$("a",d).html(),f.selectedMonth=f.currentMonth=b,f.selectedYear=f.currentYear=c,this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))},_clearDate:function(a){var b=$(a),c=this._getInst(b[0]);this._selectDate(b,"")},_selectDate:function(a,b){var c=$(a),d=this._getInst(c[0]);b=b!=null?b:this._formatDate(d),d.input&&d.input.val(b),this._updateAlternate(d);var e=this._get(d,"onSelect");e?e.apply(d.input?d.input[0]:null,[b,d]):d.input&&d.input.trigger("change"),d.inline?this._updateDatepicker(d):(this._hideDatepicker(),this._lastInput=d.input[0],typeof d.input[0]!="object"&&d.input.focus(),this._lastInput=null)},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),d=this._getDate(a),e=this.formatDate(c,d,this._getFormatConfig(a));$(b).each(function(){$(this).val(e)})}},noWeekends:function(a){var b=a.getDay();return[b>0&&b<6,""]},iso8601Week:function(a){var b=new Date(a.getTime());b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();return b.setMonth(0),b.setDate(1),Math.floor(Math.round((c-b)/864e5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var d=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;d=typeof d!="string"?d:(new Date).getFullYear()%100+parseInt(d,10);var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,g=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,h=(c?c.monthNames:null)||this._defaults.monthNames,i=-1,j=-1,k=-1,l=-1,m=!1,n=function(b){var c=s+1-1){j=1,k=l;do{var u=this._getDaysInMonth(i,j-1);if(k<=u)break;j++,k-=u}while(!0)}var t=this._daylightSavingAdjust(new Date(i,j-1,k));if(t.getFullYear()!=i||t.getMonth()+1!=j||t.getDate()!=k)throw"Invalid date";return t},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1e7,formatDate:function(a,b,c){if(!b)return"";var d=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,e=(c?c.dayNames:null)||this._defaults.dayNames,f=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,h=function(b){var c=m+112?a.getHours()+2:0),a):null},_setDate:function(a,b,c){var d=!b,e=a.selectedMonth,f=a.selectedYear,g=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=g.getDate(),a.drawMonth=a.selectedMonth=a.currentMonth=g.getMonth(),a.drawYear=a.selectedYear=a.currentYear=g.getFullYear(),(e!=a.selectedMonth||f!=a.selectedYear)&&!c&&this._notifyChange(a),this._adjustInstDate(a),a.input&&a.input.val(d?"":this._formatDate(a))},_getDate:function(a){var b=!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return b},_attachHandlers:function(a){var b=this._get(a,"stepMonths"),c="#"+a.id;a.dpDiv.find("[data-handler]").map(function(){var a={prev:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,-b,"M")},next:function(){window["DP_jQuery_"+dpuuid].datepicker._adjustDate(c,+b,"M")},hide:function(){window["DP_jQuery_"+dpuuid].datepicker._hideDatepicker()},today:function(){window["DP_jQuery_"+dpuuid].datepicker._gotoToday(c)},selectDay:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectDay(c,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"M"),!1},selectYear:function(){return window["DP_jQuery_"+dpuuid].datepicker._selectMonthYear(c,this,"Y"),!1}};$(this).bind(this.getAttribute("data-event"),a[this.getAttribute("data-handler")])})},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),d=this._get(a,"showButtonPanel"),e=this._get(a,"hideIfNoPrevNext"),f=this._get(a,"navigationAsDateFormat"),g=this._getNumberOfMonths(a),h=this._get(a,"showCurrentAtPos"),i=this._get(a,"stepMonths"),j=g[0]!=1||g[1]!=1,k=this._daylightSavingAdjust(a.currentDay?new Date(a.currentYear,a.currentMonth,a.currentDay):new Date(9999,9,9)),l=this._getMinMaxDate(a,"min"),m=this._getMinMaxDate(a,"max"),n=a.drawMonth-h,o=a.drawYear;n<0&&(n+=12,o--);if(m){var p=this._daylightSavingAdjust(new Date(m.getFullYear(),m.getMonth()-g[0]*g[1]+1,m.getDate()));p=l&&pp)n--,n<0&&(n=11,o--)}a.drawMonth=n,a.drawYear=o;var q=this._get(a,"prevText");q=f?this.formatDate(q,this._daylightSavingAdjust(new Date(o,n-i,1)),this._getFormatConfig(a)):q;var r=this._canAdjustMonth(a,-1,o,n)?''+q+"":e?"":''+q+"",s=this._get(a,"nextText");s=f?this.formatDate(s,this._daylightSavingAdjust(new Date(o,n+i,1)),this._getFormatConfig(a)):s;var t=this._canAdjustMonth(a,1,o,n)?''+s+"":e?"":''+s+"",u=this._get(a,"currentText"),v=this._get(a,"gotoCurrent")&&a.currentDay?k:b;u=f?this.formatDate(u,v,this._getFormatConfig(a)):u;var w=a.inline?"":'",x=d?'
      '+(c?w:"")+(this._isInRange(a,v)?'":"")+(c?"":w)+"
      ":"",y=parseInt(this._get(a,"firstDay"),10);y=isNaN(y)?0:y;var z=this._get(a,"showWeek"),A=this._get(a,"dayNames"),B=this._get(a,"dayNamesShort"),C=this._get(a,"dayNamesMin"),D=this._get(a,"monthNames"),E=this._get(a,"monthNamesShort"),F=this._get(a,"beforeShowDay"),G=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths"),I=this._get(a,"calculateWeek")||this.iso8601Week,J=this._getDefaultDate(a),K="";for(var L=0;L1)switch(N){case 0:Q+=" ui-datepicker-group-first",P=" ui-corner-"+(c?"right":"left");break;case g[1]-1:Q+=" ui-datepicker-group-last",P=" ui-corner-"+(c?"left":"right");break;default:Q+=" ui-datepicker-group-middle",P=""}Q+='">'}Q+='
      '+(/all|left/.test(P)&&L==0?c?t:r:"")+(/all|right/.test(P)&&L==0?c?r:t:"")+this._generateMonthYearHeader(a,n,o,l,m,L>0||N>0,D,E)+'
      '+"";var R=z?'":"";for(var S=0;S<7;S++){var T=(S+y)%7;R+="=5?' class="ui-datepicker-week-end"':"")+">"+''+C[T]+""}Q+=R+"";var U=this._getDaysInMonth(o,n);o==a.selectedYear&&n==a.selectedMonth&&(a.selectedDay=Math.min(a.selectedDay,U));var V=(this._getFirstDayOfMonth(o,n)-y+7)%7,W=Math.ceil((V+U)/7),X=j?this.maxRows>W?this.maxRows:W:W;this.maxRows=X;var Y=this._daylightSavingAdjust(new Date(o,n,1-V));for(var Z=0;Z";var _=z?'":"";for(var S=0;S<7;S++){var ba=F?F.apply(a.input?a.input[0]:null,[Y]):[!0,""],bb=Y.getMonth()!=n,bc=bb&&!H||!ba[0]||l&&Ym;_+='",Y.setDate(Y.getDate()+1),Y=this._daylightSavingAdjust(Y)}Q+=_+""}n++,n>11&&(n=0,o++),Q+="
      '+this._get(a,"weekHeader")+"
      '+this._get(a,"calculateWeek")(Y)+""+(bb&&!G?" ":bc?''+Y.getDate()+"":''+Y.getDate()+"")+"
      "+(j?""+(g[0]>0&&N==g[1]-1?'
      ':""):""),M+=Q}K+=M}return K+=x+($.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'':""),a._keyEvent=!1,K},_generateMonthYearHeader:function(a,b,c,d,e,f,g,h){var i=this._get(a,"changeMonth"),j=this._get(a,"changeYear"),k=this._get(a,"showMonthAfterYear"),l='
      ',m="";if(f||!i)m+=''+g[b]+"";else{var n=d&&d.getFullYear()==c,o=e&&e.getFullYear()==c;m+='"}k||(l+=m+(f||!i||!j?" ":""));if(!a.yearshtml){a.yearshtml="";if(f||!j)l+=''+c+"";else{var q=this._get(a,"yearRange").split(":"),r=(new Date).getFullYear(),s=function(a){var b=a.match(/c[+-].*/)?c+parseInt(a.substring(1),10):a.match(/[+-].*/)?r+parseInt(a,10):parseInt(a,10);return isNaN(b)?r:b},t=s(q[0]),u=Math.max(t,s(q[1]||""));t=d?Math.max(t,d.getFullYear()):t,u=e?Math.min(u,e.getFullYear()):u,a.yearshtml+='",l+=a.yearshtml,a.yearshtml=null}}return l+=this._get(a,"yearSuffix"),k&&(l+=(f||!i||!j?" ":"")+m),l+="
      ",l},_adjustInstDate:function(a,b,c){var d=a.drawYear+(c=="Y"?b:0),e=a.drawMonth+(c=="M"?b:0),f=Math.min(a.selectedDay,this._getDaysInMonth(d,e))+(c=="D"?b:0),g=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(d,e,f)));a.selectedDay=g.getDate(),a.drawMonth=a.selectedMonth=g.getMonth(),a.drawYear=a.selectedYear=g.getFullYear(),(c=="M"||c=="Y")&&this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max"),e=c&&bd?d:e,e},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");b&&b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){var b=this._get(a,"numberOfMonths");return b==null?[1,1]:typeof b=="number"?[1,b]:b},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,d){var e=this._getNumberOfMonths(a),f=this._daylightSavingAdjust(new Date(c,d+(b<0?b:e[0]*e[1]),1));return b<0&&f.setDate(this._getDaysInMonth(f.getFullYear(),f.getMonth())),this._isInRange(a,f)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min"),d=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!d||b.getTime()<=d.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");return b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10),{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,d){b||(a.currentDay=a.selectedDay,a.currentMonth=a.selectedMonth,a.currentYear=a.selectedYear);var e=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(d,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),e,this._getFormatConfig(a))}}),$.fn.datepicker=function(a){if(!this.length)return this;$.datepicker.initialized||($(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv),$.datepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return typeof a!="string"||a!="isDisabled"&&a!="getDate"&&a!="widget"?a=="option"&&arguments.length==2&&typeof arguments[1]=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b)):this.each(function(){typeof a=="string"?$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this].concat(b)):$.datepicker._attachDatepicker(this,a)}):$.datepicker["_"+a+"Datepicker"].apply($.datepicker,[this[0]].concat(b))},$.datepicker=new Datepicker,$.datepicker.initialized=!1,$.datepicker.uuid=(new Date).getTime(),$.datepicker.version="1.8.22",window["DP_jQuery_"+dpuuid]=$})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.ui.progressbar.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("
      ").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){return a===b?this._value():(this._setOption("value",a),this)},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;return typeof a!="number"&&(a=0),Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.21"})})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()}),this.valueDiv=a("
      ").appendTo(this.element),this.oldValue=this._value(),this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove(),a.Widget.prototype.destroy.apply(this,arguments)},value:function(a){return a===b?this._value():(this._setOption("value",a),this)},_setOption:function(b,c){b==="value"&&(this.options.value=c,this._refreshValue(),this._value()===this.options.max&&this._trigger("complete")),a.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;return typeof a!="number"&&(a=0),Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*this._value()/this.options.max},_refreshValue:function(){var a=this.value(),b=this._percentage();this.oldValue!==a&&(this.oldValue=a,this._trigger("change")),this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(b.toFixed(0)+"%"),this.element.attr("aria-valuenow",a)}}),a.extend(a.ui.progressbar,{version:"1.8.22"})})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.effects.core.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -jQuery.effects||function(a,b){function c(b){var c;return b&&b.constructor==Array&&b.length==3?b:(c=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b))?[parseInt(c[1],10),parseInt(c[2],10),parseInt(c[3],10)]:(c=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b))?[parseFloat(c[1])*2.55,parseFloat(c[2])*2.55,parseFloat(c[3])*2.55]:(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b))?[parseInt(c[1],16),parseInt(c[2],16),parseInt(c[3],16)]:(c=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b))?[parseInt(c[1]+c[1],16),parseInt(c[2]+c[2],16),parseInt(c[3]+c[3],16)]:(c=/rgba\(0, 0, 0, 0\)/.exec(b))?e.transparent:e[a.trim(b).toLowerCase()]}function d(b,d){var e;do{e=a.curCSS(b,d);if(e!=""&&e!="transparent"||a.nodeName(b,"body"))break;d="backgroundColor"}while(b=b.parentNode);return c(e)}function h(){var a=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,b={},c,d;if(a&&a.length&&a[0]&&a[a[0]]){var e=a.length;while(e--)c=a[e],typeof a[c]=="string"&&(d=c.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),b[d]=a[c])}else for(c in a)typeof a[c]=="string"&&(b[c]=a[c]);return b}function i(b){var c,d;for(c in b)d=b[c],(d==null||a.isFunction(d)||c in g||/scrollbar/.test(c)||!/color/i.test(c)&&isNaN(parseFloat(d)))&&delete b[c];return b}function j(a,b){var c={_:0},d;for(d in b)a[d]!=b[d]&&(c[d]=b[d]);return c}function k(b,c,d,e){typeof b=="object"&&(e=c,d=null,c=b,b=c.effect),a.isFunction(c)&&(e=c,d=null,c={});if(typeof c=="number"||a.fx.speeds[c])e=d,d=c,c={};return a.isFunction(d)&&(e=d,d=null),c=c||{},d=d||c.duration,d=a.fx.off?0:typeof d=="number"?d:d in a.fx.speeds?a.fx.speeds[d]:a.fx.speeds._default,e=e||c.complete,[b,c,d,e]}function l(b){return!b||typeof b=="number"||a.fx.speeds[b]?!0:typeof b=="string"&&!a.effects[b]?!0:!1}a.effects={},a.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(b,e){a.fx.step[e]=function(a){a.colorInit||(a.start=d(a.elem,e),a.end=c(a.end),a.colorInit=!0),a.elem.style[e]="rgb("+Math.max(Math.min(parseInt(a.pos*(a.end[0]-a.start[0])+a.start[0],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[1]-a.start[1])+a.start[1],10),255),0)+","+Math.max(Math.min(parseInt(a.pos*(a.end[2]-a.start[2])+a.start[2],10),255),0)+")"}});var e={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},f=["add","remove","toggle"],g={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};a.effects.animateClass=function(b,c,d,e){return a.isFunction(d)&&(e=d,d=null),this.queue(function(){var g=a(this),k=g.attr("style")||" ",l=i(h.call(this)),m,n=g.attr("class")||"";a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),m=i(h.call(this)),g.attr("class",n),g.animate(j(l,m),{queue:!1,duration:c,easing:d,complete:function(){a.each(f,function(a,c){b[c]&&g[c+"Class"](b[c])}),typeof g.attr("style")=="object"?(g.attr("style").cssText="",g.attr("style").cssText=k):g.attr("style",k),e&&e.apply(this,arguments),a.dequeue(this)}})})},a.fn.extend({_addClass:a.fn.addClass,addClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{add:b},c,d,e]):this._addClass(b)},_removeClass:a.fn.removeClass,removeClass:function(b,c,d,e){return c?a.effects.animateClass.apply(this,[{remove:b},c,d,e]):this._removeClass(b)},_toggleClass:a.fn.toggleClass,toggleClass:function(c,d,e,f,g){return typeof d=="boolean"||d===b?e?a.effects.animateClass.apply(this,[d?{add:c}:{remove:c},e,f,g]):this._toggleClass(c,d):a.effects.animateClass.apply(this,[{toggle:c},d,e,f])},switchClass:function(b,c,d,e,f){return a.effects.animateClass.apply(this,[{add:c,remove:b},d,e,f])}}),a.extend(a.effects,{version:"1.8.21",save:function(a,b){for(var c=0;c").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;try{e.id}catch(f){e=document.body}return b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;return b.parent().is(".ui-effects-wrapper")?(c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus(),c):b},setTransition:function(b,c,d,e){return e=e||{},a.each(c,function(a,c){var f=b.cssUnit(c);f[0]>0&&(e[c]=f[0]*d+f[1])}),e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];return a.fx.off||!i?h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)}):i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="show",this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="hide",this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);return c[1].mode="toggle",this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];return a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])}),d}}),a.easing.jswing=a.easing.swing,a.extend(a.easing,{def:"easeOutQuad",swing:function(b,c,d,e,f){return a.easing[a.easing.def](b,c,d,e,f)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b+c:d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b+c:-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b*b+c:d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return b==0?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){return b==0?c:b==e?c+d:(b/=e/2)<1?d/2*Math.pow(2,10*(b-1))+c:d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){return(b/=e/2)<1?-d/2*(Math.sqrt(1-b*b)-1)+c:d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e=document.activeElement;try{e.id}catch(f){e=document.body}return b.wrap(d),(b[0]===e||a.contains(b[0],e))&&a(e).focus(),d=b.parent(),b.css("position")=="static"?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),d.css(c).show()},removeWrapper:function(b){var c,d=document.activeElement;return b.parent().is(".ui-effects-wrapper")?(c=b.parent().replaceWith(b),(b[0]===d||a.contains(b[0],d))&&a(d).focus(),c):b},setTransition:function(b,c,d,e){return e=e||{},a.each(c,function(a,c){var f=b.cssUnit(c);f[0]>0&&(e[c]=f[0]*d+f[1])}),e}}),a.fn.extend({effect:function(b,c,d,e){var f=k.apply(this,arguments),g={options:f[1],duration:f[2],callback:f[3]},h=g.options.mode,i=a.effects[b];return a.fx.off||!i?h?this[h](g.duration,g.callback):this.each(function(){g.callback&&g.callback.call(this)}):i.call(this,g)},_show:a.fn.show,show:function(a){if(l(a))return this._show.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="show",this.effect.apply(this,b)},_hide:a.fn.hide,hide:function(a){if(l(a))return this._hide.apply(this,arguments);var b=k.apply(this,arguments);return b[1].mode="hide",this.effect.apply(this,b)},__toggle:a.fn.toggle,toggle:function(b){if(l(b)||typeof b=="boolean"||a.isFunction(b))return this.__toggle.apply(this,arguments);var c=k.apply(this,arguments);return c[1].mode="toggle",this.effect.apply(this,c)},cssUnit:function(b){var c=this.css(b),d=[];return a.each(["em","px","%","pt"],function(a,b){c.indexOf(b)>0&&(d=[parseFloat(c),b])}),d}}),a.easing.jswing=a.easing.swing,a.extend(a.easing,{def:"easeOutQuad",swing:function(b,c,d,e,f){return a.easing[a.easing.def](b,c,d,e,f)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b+c:d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b+c:-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b*b+c:d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return b==0?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){return b==0?c:b==e?c+d:(b/=e/2)<1?d/2*Math.pow(2,10*(b-1))+c:d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){return(b/=e/2)<1?-d/2*(Math.sqrt(1-b*b)-1)+c:d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(b==0)return c;if((b/=e)==1)return c+d;g||(g=e*.3);if(h").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.effects.explode=function(b){return this.queue(function(){var c=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3,d=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?a(this).is(":visible")?"hide":"show":b.options.mode;var e=a(this).show().css("visibility","hidden"),f=e.offset();f.top-=parseInt(e.css("marginTop"),10)||0,f.left-=parseInt(e.css("marginLeft"),10)||0;var g=e.outerWidth(!0),h=e.outerHeight(!0);for(var i=0;i").css({position:"absolute",visibility:"visible",left:-j*(g/d),top:-i*(h/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/d,height:h/c,left:f.left+j*(g/d)+(b.options.mode=="show"?(j-Math.floor(d/2))*(g/d):0),top:f.top+i*(h/c)+(b.options.mode=="show"?(i-Math.floor(c/2))*(h/c):0),opacity:b.options.mode=="show"?0:1}).animate({left:f.left+j*(g/d)+(b.options.mode=="show"?0:(j-Math.floor(d/2))*(g/d)),top:f.top+i*(h/c)+(b.options.mode=="show"?0:(i-Math.floor(c/2))*(h/c)),opacity:b.options.mode=="show"?1:0},b.duration||500);setTimeout(function(){b.options.mode=="show"?e.css({visibility:"visible"}):e.css({visibility:"visible"}).hide(),b.callback&&b.callback.apply(e[0]),e.dequeue(),a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.effects.fade.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.effects.fold.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.effects.highlight.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);;/*! jQuery UI - v1.8.21 - 2012-06-05 +(function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery);;/*! jQuery UI - v1.8.22 - 2012-07-24 * https://github.com/jquery/jquery-ui * Includes: jquery.effects.pulsate.js * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ -(function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show"),e=(b.options.times||5)*2-1,f=b.duration?b.duration/2:a.fx.speeds._default/2,g=c.is(":visible"),h=0;g||(c.css("opacity",0).show(),h=1),(d=="hide"&&g||d=="show"&&!g)&&e--;for(var i=0;i=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery); \ No newline at end of file diff --git a/cms/static/js/vendor/jquery.tablednd.js b/common/static/js/vendor/jquery.tablednd.js similarity index 100% rename from cms/static/js/vendor/jquery.tablednd.js rename to common/static/js/vendor/jquery.tablednd.js diff --git a/cms/static/js/vendor/json2.js b/common/static/js/vendor/json2.js similarity index 100% rename from cms/static/js/vendor/json2.js rename to common/static/js/vendor/json2.js diff --git a/cms/static/js/vendor/markitup/jquery.markitup.js b/common/static/js/vendor/markitup/jquery.markitup.js similarity index 100% rename from cms/static/js/vendor/markitup/jquery.markitup.js rename to common/static/js/vendor/markitup/jquery.markitup.js diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/bold.png b/common/static/js/vendor/markitup/sets/wiki/images/bold.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/bold.png rename to common/static/js/vendor/markitup/sets/wiki/images/bold.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/clean.png b/common/static/js/vendor/markitup/sets/wiki/images/clean.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/clean.png rename to common/static/js/vendor/markitup/sets/wiki/images/clean.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/code.png b/common/static/js/vendor/markitup/sets/wiki/images/code.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/code.png rename to common/static/js/vendor/markitup/sets/wiki/images/code.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/h1.png b/common/static/js/vendor/markitup/sets/wiki/images/h1.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/h1.png rename to common/static/js/vendor/markitup/sets/wiki/images/h1.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/h2.png b/common/static/js/vendor/markitup/sets/wiki/images/h2.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/h2.png rename to common/static/js/vendor/markitup/sets/wiki/images/h2.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/h3.png b/common/static/js/vendor/markitup/sets/wiki/images/h3.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/h3.png rename to common/static/js/vendor/markitup/sets/wiki/images/h3.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/h4.png b/common/static/js/vendor/markitup/sets/wiki/images/h4.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/h4.png rename to common/static/js/vendor/markitup/sets/wiki/images/h4.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/h5.png b/common/static/js/vendor/markitup/sets/wiki/images/h5.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/h5.png rename to common/static/js/vendor/markitup/sets/wiki/images/h5.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/image.png b/common/static/js/vendor/markitup/sets/wiki/images/image.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/image.png rename to common/static/js/vendor/markitup/sets/wiki/images/image.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/italic.png b/common/static/js/vendor/markitup/sets/wiki/images/italic.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/italic.png rename to common/static/js/vendor/markitup/sets/wiki/images/italic.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/link.png b/common/static/js/vendor/markitup/sets/wiki/images/link.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/link.png rename to common/static/js/vendor/markitup/sets/wiki/images/link.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/list-bullet.png b/common/static/js/vendor/markitup/sets/wiki/images/list-bullet.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/list-bullet.png rename to common/static/js/vendor/markitup/sets/wiki/images/list-bullet.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/list-numeric.png b/common/static/js/vendor/markitup/sets/wiki/images/list-numeric.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/list-numeric.png rename to common/static/js/vendor/markitup/sets/wiki/images/list-numeric.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/picture.png b/common/static/js/vendor/markitup/sets/wiki/images/picture.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/picture.png rename to common/static/js/vendor/markitup/sets/wiki/images/picture.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/preview.png b/common/static/js/vendor/markitup/sets/wiki/images/preview.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/preview.png rename to common/static/js/vendor/markitup/sets/wiki/images/preview.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/quotes.png b/common/static/js/vendor/markitup/sets/wiki/images/quotes.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/quotes.png rename to common/static/js/vendor/markitup/sets/wiki/images/quotes.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/stroke.png b/common/static/js/vendor/markitup/sets/wiki/images/stroke.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/stroke.png rename to common/static/js/vendor/markitup/sets/wiki/images/stroke.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/images/url.png b/common/static/js/vendor/markitup/sets/wiki/images/url.png similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/images/url.png rename to common/static/js/vendor/markitup/sets/wiki/images/url.png diff --git a/cms/static/js/vendor/markitup/sets/wiki/set.js b/common/static/js/vendor/markitup/sets/wiki/set.js similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/set.js rename to common/static/js/vendor/markitup/sets/wiki/set.js diff --git a/cms/static/js/vendor/markitup/sets/wiki/style.css b/common/static/js/vendor/markitup/sets/wiki/style.css similarity index 100% rename from cms/static/js/vendor/markitup/sets/wiki/style.css rename to common/static/js/vendor/markitup/sets/wiki/style.css diff --git a/cms/static/js/vendor/markitup/skins/simple/images/handle.png b/common/static/js/vendor/markitup/skins/simple/images/handle.png similarity index 100% rename from cms/static/js/vendor/markitup/skins/simple/images/handle.png rename to common/static/js/vendor/markitup/skins/simple/images/handle.png diff --git a/cms/static/js/vendor/markitup/skins/simple/images/menu.png b/common/static/js/vendor/markitup/skins/simple/images/menu.png similarity index 100% rename from cms/static/js/vendor/markitup/skins/simple/images/menu.png rename to common/static/js/vendor/markitup/skins/simple/images/menu.png diff --git a/cms/static/js/vendor/markitup/skins/simple/images/submenu.png b/common/static/js/vendor/markitup/skins/simple/images/submenu.png similarity index 100% rename from cms/static/js/vendor/markitup/skins/simple/images/submenu.png rename to common/static/js/vendor/markitup/skins/simple/images/submenu.png diff --git a/cms/static/js/vendor/markitup/skins/simple/style.css b/common/static/js/vendor/markitup/skins/simple/style.css similarity index 100% rename from cms/static/js/vendor/markitup/skins/simple/style.css rename to common/static/js/vendor/markitup/skins/simple/style.css diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/.gitignore b/common/static/js/vendor/mathjax-MathJax-c9db6ac/.gitignore similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/.gitignore rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/.gitignore diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/LICENSE b/common/static/js/vendor/mathjax-MathJax-c9db6ac/LICENSE similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/LICENSE rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/LICENSE diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/MathJax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/MathJax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/MathJax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/MathJax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/README-branch.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/README-branch.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/README-branch.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/README-branch.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/README.md b/common/static/js/vendor/mathjax-MathJax-c9db6ac/README.md similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/README.md rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/README.md diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/VERSION b/common/static/js/vendor/mathjax-MathJax-c9db6ac/VERSION similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/VERSION rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/VERSION diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/AM_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/Accessible.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MML_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MMLorHTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MMLorHTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/MMLorHTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/MMLorHTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS-MML_SVG.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-AMS_HTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/TeX-MML-AM_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/default.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/default.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/default.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/default.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/local/local.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/config/local/local.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/config/local/local.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/config/local/local.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/.gitignore b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/.gitignore similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/.gitignore rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/.gitignore diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/Makefile b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/Makefile similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/Makefile rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/Makefile diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/CSS-styles.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/CSS-styles.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/CSS-styles.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/CSS-styles.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/HTML-snippets.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/HTML-snippets.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/HTML-snippets.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/HTML-snippets.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_head.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_head.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_head.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_head.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_menu.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_menu.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_menu.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_menu.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_templates.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_templates.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_templates.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/mt_templates.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_menu.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_menu.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_menu.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_menu.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_templates.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_templates.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_templates.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_images/wp_templates.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/CSS-styles.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/CSS-styles.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/CSS-styles.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/CSS-styles.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/HTML-snippets.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/HTML-snippets.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/HTML-snippets.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/HTML-snippets.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/ajax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/ajax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/ajax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/ajax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/callback.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/callback.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/callback.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/callback.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/elementjax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/elementjax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/elementjax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/elementjax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/html.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/html.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/html.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/html.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/hub.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/hub.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/hub.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/hub.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/index.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/index.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/index.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/index.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/inputjax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/inputjax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/inputjax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/inputjax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/jax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/jax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/jax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/jax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/message.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/message.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/message.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/message.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/object.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/object.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/object.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/object.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/outputjax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/outputjax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/outputjax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/outputjax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/queue.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/queue.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/queue.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/queue.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/signal.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/signal.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/signal.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/signal.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/variable.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/variable.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/variable.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/api/variable.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/asciimath.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/asciimath.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/asciimath.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/asciimath.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/callbacks.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/callbacks.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/callbacks.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/callbacks.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/community.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/community.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/community.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/community.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/config-files.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/config-files.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/config-files.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/config-files.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/configuration.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/configuration.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/configuration.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/configuration.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/dynamic.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/dynamic.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/dynamic.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/dynamic.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/glossary.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/glossary.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/glossary.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/glossary.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/index.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/index.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/index.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/index.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/installation.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/installation.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/installation.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/installation.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/jsMath.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/jsMath.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/jsMath.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/jsMath.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathjax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathjax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathjax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathjax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathml.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathml.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathml.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/mathml.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/model.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/model.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/model.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/model.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/AsciiMath.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/AsciiMath.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/AsciiMath.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/AsciiMath.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/FontWarnings.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/FontWarnings.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/FontWarnings.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/FontWarnings.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/HTML-CSS.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/HTML-CSS.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/HTML-CSS.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/HTML-CSS.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MMLorHTML.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MMLorHTML.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MMLorHTML.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MMLorHTML.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathEvents.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathEvents.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathEvents.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathEvents.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathML.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathML.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathML.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathML.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathMenu.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathMenu.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathMenu.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathMenu.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathZoom.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathZoom.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathZoom.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/MathZoom.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/NativeMML.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/NativeMML.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/NativeMML.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/NativeMML.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/SVG.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/SVG.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/SVG.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/SVG.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/TeX.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/TeX.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/TeX.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/TeX.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/asciimath2jax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/asciimath2jax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/asciimath2jax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/asciimath2jax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/hub.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/hub.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/hub.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/hub.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/index.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/index.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/index.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/index.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/jsMath2jax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/jsMath2jax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/jsMath2jax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/jsMath2jax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/mml2jax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/mml2jax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/mml2jax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/mml2jax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/tex2jax.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/tex2jax.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/tex2jax.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/options/tex2jax.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/output.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/output.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/output.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/output.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/index.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/index.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/index.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/index.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/movable-type.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/movable-type.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/movable-type.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/movable-type.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/wordpress.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/wordpress.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/wordpress.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/platforms/wordpress.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/queues.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/queues.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/queues.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/queues.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/signals.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/signals.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/signals.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/signals.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/start.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/start.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/start.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/start.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/startup.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/startup.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/startup.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/startup.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/synchronize.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/synchronize.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/synchronize.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/synchronize.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/tex.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/tex.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/tex.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/tex.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/typeset.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/typeset.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/typeset.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/typeset.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/upgrade.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/upgrade.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/upgrade.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/upgrade.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-1.1.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-1.1.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-1.1.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-1.1.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-2.0.txt b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-2.0.txt similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-2.0.txt rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_sources/whats-new-2.0.txt diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/basic.css b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/basic.css similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/basic.css rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/basic.css diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/doctools.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/doctools.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/doctools.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/doctools.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/file.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/file.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/file.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/file.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/jquery.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/jquery.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/jquery.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/jquery.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_mathml.user.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_mathml.user.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_mathml.user.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_mathml.user.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_wikipedia.user.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_wikipedia.user.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_wikipedia.user.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mathjax_wikipedia.user.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/minus.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/minus.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/minus.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/minus.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mj.css b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mj.css similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mj.css rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/mj.css diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/plus.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/plus.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/plus.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/plus.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/pygments.css b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/pygments.css similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/pygments.css rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/pygments.css diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/searchtools.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/searchtools.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/searchtools.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/searchtools.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/underscore.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/underscore.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/underscore.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/_static/underscore.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/ajax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/ajax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/ajax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/ajax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/callback.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/callback.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/callback.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/callback.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/elementjax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/elementjax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/elementjax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/elementjax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/html.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/html.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/html.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/html.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/hub.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/hub.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/hub.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/hub.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/index.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/index.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/index.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/index.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/inputjax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/inputjax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/inputjax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/inputjax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/jax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/jax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/jax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/jax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/message.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/message.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/message.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/message.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/object.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/object.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/object.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/object.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/outputjax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/outputjax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/outputjax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/outputjax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/queue.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/queue.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/queue.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/queue.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/signal.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/signal.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/signal.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/signal.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/variable.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/variable.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/variable.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/api/variable.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/asciimath.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/asciimath.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/asciimath.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/asciimath.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/callbacks.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/callbacks.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/callbacks.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/callbacks.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/community.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/community.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/community.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/community.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/config-files.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/config-files.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/config-files.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/config-files.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/configuration.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/configuration.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/configuration.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/configuration.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/dynamic.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/dynamic.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/dynamic.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/dynamic.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/genindex.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/genindex.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/genindex.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/genindex.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/glossary.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/glossary.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/glossary.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/glossary.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/index.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/index.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/index.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/index.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/installation.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/installation.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/installation.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/installation.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/jsMath.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/jsMath.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/jsMath.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/jsMath.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathjax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathjax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathjax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathjax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathml.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathml.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathml.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/mathml.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/model.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/model.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/model.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/model.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/AsciiMath.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/AsciiMath.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/AsciiMath.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/AsciiMath.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/FontWarnings.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/FontWarnings.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/FontWarnings.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/FontWarnings.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/HTML-CSS.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/HTML-CSS.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/HTML-CSS.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/HTML-CSS.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MMLorHTML.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MMLorHTML.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MMLorHTML.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MMLorHTML.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathEvents.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathEvents.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathEvents.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathEvents.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathML.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathML.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathML.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathML.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathMenu.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathMenu.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathMenu.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathMenu.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathZoom.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathZoom.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathZoom.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/MathZoom.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/NativeMML.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/NativeMML.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/NativeMML.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/NativeMML.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/SVG.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/SVG.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/SVG.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/SVG.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/TeX.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/TeX.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/TeX.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/TeX.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/asciimath2jax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/asciimath2jax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/asciimath2jax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/asciimath2jax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/hub.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/hub.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/hub.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/hub.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/index.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/index.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/index.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/index.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/jsMath2jax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/jsMath2jax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/jsMath2jax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/jsMath2jax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/mml2jax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/mml2jax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/mml2jax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/mml2jax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/tex2jax.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/tex2jax.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/tex2jax.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/options/tex2jax.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/output.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/output.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/output.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/output.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/index.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/index.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/index.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/index.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/movable-type.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/movable-type.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/movable-type.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/movable-type.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/wordpress.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/wordpress.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/wordpress.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/platforms/wordpress.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/queues.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/queues.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/queues.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/queues.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/search.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/search.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/search.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/search.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/searchindex.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/searchindex.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/searchindex.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/searchindex.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/signals.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/signals.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/signals.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/signals.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/start.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/start.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/start.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/start.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/startup.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/startup.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/startup.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/startup.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/synchronize.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/synchronize.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/synchronize.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/synchronize.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/tex.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/tex.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/tex.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/tex.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/typeset.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/typeset.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/typeset.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/typeset.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/upgrade.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/upgrade.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/upgrade.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/upgrade.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-1.1.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-1.1.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-1.1.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-1.1.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-2.0.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-2.0.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-2.0.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/html/whats-new-2.0.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/CSS-styles.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/CSS-styles.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/CSS-styles.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/CSS-styles.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/HTML-snippets.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/HTML-snippets.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/HTML-snippets.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/HTML-snippets.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_mathml.user.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_mathml.user.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_mathml.user.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_mathml.user.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_wikipedia.user.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_wikipedia.user.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_wikipedia.user.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/_static/mathjax_wikipedia.user.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/ajax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/ajax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/ajax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/ajax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/callback.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/callback.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/callback.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/callback.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/elementjax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/elementjax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/elementjax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/elementjax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/html.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/html.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/html.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/html.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/hub.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/hub.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/hub.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/hub.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/index.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/index.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/index.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/index.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/inputjax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/inputjax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/inputjax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/inputjax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/jax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/jax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/jax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/jax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/message.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/message.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/message.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/message.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/object.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/object.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/object.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/object.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/outputjax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/outputjax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/outputjax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/outputjax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/queue.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/queue.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/queue.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/queue.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/signal.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/signal.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/signal.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/signal.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/variable.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/variable.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/variable.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/api/variable.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/asciimath.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/asciimath.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/asciimath.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/asciimath.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/callbacks.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/callbacks.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/callbacks.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/callbacks.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/community.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/community.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/community.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/community.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/config-files.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/config-files.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/config-files.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/config-files.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/configuration.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/configuration.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/configuration.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/configuration.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/dynamic.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/dynamic.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/dynamic.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/dynamic.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/glossary.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/glossary.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/glossary.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/glossary.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_head.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_head.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_head.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_head.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_menu.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_menu.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_menu.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_menu.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_templates.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_templates.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_templates.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/mt_templates.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_menu.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_menu.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_menu.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_menu.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_templates.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_templates.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_templates.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/images/wp_templates.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/index.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/index.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/index.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/index.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/installation.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/installation.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/installation.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/installation.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/jsMath.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/jsMath.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/jsMath.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/jsMath.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathjax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathjax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathjax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathjax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathml.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathml.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathml.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mathml.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/static/mj.css_t b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/static/mj.css_t similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/static/mj.css_t rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/static/mj.css_t diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/theme.conf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/theme.conf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/theme.conf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/theme.conf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/model.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/model.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/model.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/model.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/AsciiMath.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/AsciiMath.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/AsciiMath.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/AsciiMath.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/FontWarnings.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/FontWarnings.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/FontWarnings.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/FontWarnings.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/HTML-CSS.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/HTML-CSS.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/HTML-CSS.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/HTML-CSS.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MMLorHTML.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MMLorHTML.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MMLorHTML.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MMLorHTML.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathEvents.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathEvents.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathEvents.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathEvents.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathML.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathML.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathML.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathML.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathMenu.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathMenu.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathMenu.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathMenu.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathZoom.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathZoom.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathZoom.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/MathZoom.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/NativeMML.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/NativeMML.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/NativeMML.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/NativeMML.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/SVG.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/SVG.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/SVG.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/SVG.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/TeX.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/TeX.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/TeX.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/TeX.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/asciimath2jax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/asciimath2jax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/asciimath2jax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/asciimath2jax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/hub.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/hub.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/hub.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/hub.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/index.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/index.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/index.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/index.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/jsMath2jax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/jsMath2jax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/jsMath2jax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/jsMath2jax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/mml2jax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/mml2jax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/mml2jax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/mml2jax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/tex2jax.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/tex2jax.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/tex2jax.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/options/tex2jax.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/output.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/output.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/output.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/output.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/index.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/index.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/index.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/index.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/movable-type.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/movable-type.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/movable-type.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/movable-type.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/wordpress.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/wordpress.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/wordpress.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/platforms/wordpress.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/queues.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/queues.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/queues.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/queues.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/signals.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/signals.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/signals.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/signals.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/start.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/start.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/start.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/start.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/startup.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/startup.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/startup.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/startup.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/synchronize.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/synchronize.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/synchronize.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/synchronize.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/tex.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/tex.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/tex.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/tex.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/typeset.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/typeset.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/typeset.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/typeset.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/upgrade.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/upgrade.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/upgrade.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/upgrade.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-1.1.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-1.1.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-1.1.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-1.1.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-2.0.rst b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-2.0.rst similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-2.0.rst rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/whats-new-2.0.rst diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/FontWarnings.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/FontWarnings.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/FontWarnings.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/FontWarnings.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/HTML-CSS/handle-floats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/HTML-CSS/handle-floats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/HTML-CSS/handle-floats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/HTML-CSS/handle-floats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathEvents.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathEvents.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathEvents.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathEvents.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathMenu.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathMenu.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathMenu.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathMenu.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathZoom.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathZoom.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathZoom.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/MathZoom.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSmath.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSmath.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSmath.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSmath.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSsymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSsymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSsymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/AMSsymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/HTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/HTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/HTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/HTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/action.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/action.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/action.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/action.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autobold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autobold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autobold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autobold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autoload-all.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autoload-all.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autoload-all.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/autoload-all.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/bbox.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/bbox.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/bbox.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/bbox.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/begingroup.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/begingroup.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/begingroup.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/begingroup.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/boldsymbol.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/boldsymbol.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/boldsymbol.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/boldsymbol.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/cancel.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/cancel.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/cancel.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/cancel.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/color.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/color.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/color.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/color.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/enclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/enclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/enclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/enclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/extpfeil.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/extpfeil.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/extpfeil.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/extpfeil.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mathchoice.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mathchoice.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mathchoice.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mathchoice.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mhchem.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mhchem.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mhchem.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/mhchem.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/newcommand.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/newcommand.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/newcommand.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/newcommand.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noErrors.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noErrors.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noErrors.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noErrors.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noUndefined.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noUndefined.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noUndefined.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/noUndefined.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/unicode.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/unicode.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/unicode.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/unicode.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/verb.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/verb.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/verb.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/TeX/verb.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/asciimath2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/asciimath2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/asciimath2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/asciimath2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/jsMath2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/jsMath2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/jsMath2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/jsMath2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/mml2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/mml2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/mml2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/mml2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/tex2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/tex2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/tex2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/tex2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/toMathML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/toMathML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/toMathML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/toMathML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/v1.0-warning.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/v1.0-warning.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/v1.0-warning.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/extensions/v1.0-warning.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff b/common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/images/CloseX-31.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/images/CloseX-31.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/images/CloseX-31.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/images/CloseX-31.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/images/MenuArrow-15.png b/common/static/js/vendor/mathjax-MathJax-c9db6ac/images/MenuArrow-15.png similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/images/MenuArrow-15.png rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/images/MenuArrow-15.png diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscSymbolsAndArrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscSymbolsAndArrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscSymbolsAndArrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscSymbolsAndArrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/element/mml/optable/SupplementalArrowsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/AsciiMath/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/a.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/a.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/a.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/a.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/b.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/b.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/b.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/b.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/c.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/c.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/c.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/c.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/d.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/d.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/d.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/d.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/e.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/e.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/e.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/e.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/f.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/f.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/f.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/f.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/fr.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/fr.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/fr.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/fr.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/g.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/g.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/g.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/g.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/h.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/h.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/h.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/h.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/i.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/i.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/i.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/i.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/j.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/j.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/j.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/j.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/k.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/k.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/k.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/k.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/l.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/l.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/l.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/l.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/m.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/m.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/m.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/m.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/n.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/n.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/n.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/n.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/o.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/o.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/o.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/o.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/opf.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/opf.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/opf.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/opf.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/p.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/p.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/p.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/p.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/q.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/q.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/q.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/q.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/r.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/r.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/r.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/r.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/s.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/s.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/s.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/s.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/scr.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/scr.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/scr.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/scr.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/t.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/t.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/t.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/t.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/u.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/u.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/u.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/u.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/v.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/v.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/v.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/v.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/w.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/w.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/w.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/w.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/x.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/x.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/x.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/x.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/y.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/y.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/y.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/y.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/z.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/z.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/z.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/entities/z.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/MathML/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/input/TeX/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/annotation-xml.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/annotation-xml.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/annotation-xml.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/annotation-xml.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/maction.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/maction.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/maction.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/maction.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/menclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/menclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/menclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/menclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mglyph.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mglyph.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mglyph.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mglyph.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mmultiscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mmultiscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mmultiscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mmultiscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/ms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/ms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/ms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/ms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mtable.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mtable.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mtable.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/mtable.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/multiline.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/multiline.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/multiline.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/autoload/multiline.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/STIX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/fonts/TeX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/imageFonts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/imageFonts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/imageFonts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/imageFonts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/HTML-CSS/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/NativeMML/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/annotation-xml.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/annotation-xml.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/annotation-xml.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/annotation-xml.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/maction.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/maction.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/maction.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/maction.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/menclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/menclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/menclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/menclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mglyph.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mglyph.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mglyph.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mglyph.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mmultiscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mmultiscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mmultiscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mmultiscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/ms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/ms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/ms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/ms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mtable.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mtable.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mtable.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/mtable.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/multiline.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/multiline.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/multiline.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/autoload/multiline.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Math/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Script/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/fonts/TeX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/jax/output/SVG/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/examples.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/examples.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/examples.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/examples.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/index-images.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/index-images.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/index-images.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/index-images.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/index.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/index.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/index.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/index.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-all-at-once.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-all-at-once.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-all-at-once.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-all-at-once.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-asciimath.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-asciimath.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-asciimath.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-asciimath.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-autoload.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-autoload.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-autoload.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-autoload.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-2.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-2.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-2.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-2.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-steps.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-steps.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-steps.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic-steps.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-dynamic.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqnum.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqnum.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqnum.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqnum.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqrefs.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqrefs.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqrefs.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-eqrefs.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader-config.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader-config.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader-config.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader-config.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-loader.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-macros.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-macros.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-macros.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-macros.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-mml.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-mml.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-mml.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-mml.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-signals.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-signals.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-signals.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-signals.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-tex.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-tex.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-tex.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample-tex.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample.html b/common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample.html similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample.html rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/test/sample.html diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/MathJax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/MathJax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/MathJax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/MathJax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/AM_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/Accessible.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MML_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MMLorHTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MMLorHTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MMLorHTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/MMLorHTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS-MML_SVG.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-AMS_HTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML-full.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML-full.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML-full.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML-full.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/TeX-MML-AM_HTMLorMML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/default.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/default.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/default.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/default.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/local/local.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/local/local.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/local/local.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/config/local/local.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/FontWarnings.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/FontWarnings.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/FontWarnings.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/FontWarnings.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/HTML-CSS/handle-floats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/HTML-CSS/handle-floats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/HTML-CSS/handle-floats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/HTML-CSS/handle-floats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathEvents.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathEvents.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathEvents.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathEvents.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathMenu.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathMenu.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathMenu.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathMenu.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathZoom.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathZoom.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathZoom.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/MathZoom.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSmath.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSmath.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSmath.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSmath.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSsymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSsymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSsymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/AMSsymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/HTML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/HTML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/HTML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/HTML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/action.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/action.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/action.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/action.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autobold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autobold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autobold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autobold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autoload-all.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autoload-all.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autoload-all.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/autoload-all.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/bbox.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/bbox.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/bbox.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/bbox.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/begingroup.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/begingroup.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/begingroup.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/begingroup.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/boldsymbol.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/boldsymbol.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/boldsymbol.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/boldsymbol.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/cancel.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/cancel.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/cancel.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/cancel.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/color.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/color.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/color.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/color.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/enclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/enclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/enclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/enclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/extpfeil.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/extpfeil.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/extpfeil.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/extpfeil.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mathchoice.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mathchoice.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mathchoice.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mathchoice.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mhchem.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mhchem.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mhchem.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/mhchem.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/newcommand.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/newcommand.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/newcommand.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/newcommand.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noErrors.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noErrors.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noErrors.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noErrors.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noUndefined.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noUndefined.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noUndefined.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/noUndefined.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/unicode.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/unicode.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/unicode.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/unicode.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/verb.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/verb.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/verb.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/TeX/verb.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/asciimath2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/asciimath2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/asciimath2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/asciimath2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/jsMath2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/jsMath2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/jsMath2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/jsMath2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/mml2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/mml2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/mml2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/mml2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/tex2jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/tex2jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/tex2jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/tex2jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/toMathML.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/toMathML.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/toMathML.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/toMathML.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/v1.0-warning.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/v1.0-warning.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/v1.0-warning.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/extensions/v1.0-warning.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/element/mml/optable/SupplementalArrowsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/AsciiMath/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/a.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/a.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/a.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/a.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/b.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/b.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/b.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/b.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/c.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/c.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/c.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/c.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/d.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/d.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/d.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/d.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/e.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/e.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/e.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/e.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/f.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/f.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/f.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/f.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/fr.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/fr.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/fr.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/fr.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/g.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/g.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/g.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/g.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/h.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/h.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/h.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/h.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/i.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/i.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/i.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/i.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/j.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/j.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/j.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/j.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/k.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/k.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/k.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/k.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/l.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/l.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/l.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/l.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/m.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/m.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/m.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/m.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/n.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/n.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/n.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/n.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/o.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/o.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/o.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/o.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/opf.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/opf.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/opf.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/opf.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/p.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/p.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/p.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/p.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/q.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/q.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/q.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/q.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/r.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/r.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/r.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/r.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/s.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/s.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/s.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/s.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/scr.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/scr.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/scr.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/scr.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/t.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/t.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/t.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/t.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/u.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/u.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/u.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/u.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/v.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/v.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/v.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/v.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/w.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/w.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/w.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/w.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/x.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/x.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/x.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/x.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/y.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/y.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/y.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/y.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/z.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/z.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/z.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/entities/z.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/MathML/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/input/TeX/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/maction.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/maction.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/maction.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/maction.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/menclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/menclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/menclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/menclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mglyph.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mglyph.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mglyph.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mglyph.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/ms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/ms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/ms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/ms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mtable.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mtable.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mtable.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/mtable.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/multiline.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/multiline.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/multiline.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/autoload/multiline.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/blank.gif b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/blank.gif similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/blank.gif rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/blank.gif diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/imageFonts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/imageFonts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/imageFonts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/imageFonts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/HTML-CSS/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/NativeMML/jax.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/annotation-xml.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/annotation-xml.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/annotation-xml.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/annotation-xml.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/maction.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/maction.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/maction.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/maction.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/menclose.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/menclose.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/menclose.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/menclose.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mglyph.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mglyph.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mglyph.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mglyph.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mmultiscripts.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mmultiscripts.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mmultiscripts.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mmultiscripts.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/ms.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/ms.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/ms.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/ms.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mtable.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mtable.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mtable.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/mtable.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/multiline.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/multiline.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/multiline.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/autoload/multiline.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/config.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/config.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/config.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/config.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/fonts/TeX/fontdata.js diff --git a/lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/jax.js b/common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/jax.js similarity index 100% rename from lms/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/jax.js rename to common/static/js/vendor/mathjax-MathJax-c9db6ac/unpacked/jax/output/SVG/jax.js diff --git a/lms/static/js/vendor/swfobject/expressInstall.swf b/common/static/js/vendor/swfobject/expressInstall.swf similarity index 100% rename from lms/static/js/vendor/swfobject/expressInstall.swf rename to common/static/js/vendor/swfobject/expressInstall.swf diff --git a/lms/static/js/vendor/swfobject/index.html b/common/static/js/vendor/swfobject/index.html similarity index 100% rename from lms/static/js/vendor/swfobject/index.html rename to common/static/js/vendor/swfobject/index.html diff --git a/lms/static/js/vendor/swfobject/index_dynamic.html b/common/static/js/vendor/swfobject/index_dynamic.html similarity index 100% rename from lms/static/js/vendor/swfobject/index_dynamic.html rename to common/static/js/vendor/swfobject/index_dynamic.html diff --git a/lms/static/js/vendor/swfobject/src/expressInstall.as b/common/static/js/vendor/swfobject/src/expressInstall.as similarity index 100% rename from lms/static/js/vendor/swfobject/src/expressInstall.as rename to common/static/js/vendor/swfobject/src/expressInstall.as diff --git a/lms/static/js/vendor/swfobject/src/expressInstall.fla b/common/static/js/vendor/swfobject/src/expressInstall.fla similarity index 100% rename from lms/static/js/vendor/swfobject/src/expressInstall.fla rename to common/static/js/vendor/swfobject/src/expressInstall.fla diff --git a/lms/static/js/vendor/swfobject/src/swfobject.js b/common/static/js/vendor/swfobject/src/swfobject.js similarity index 100% rename from lms/static/js/vendor/swfobject/src/swfobject.js rename to common/static/js/vendor/swfobject/src/swfobject.js diff --git a/lms/static/js/vendor/swfobject/swfobject.js b/common/static/js/vendor/swfobject/swfobject.js similarity index 100% rename from lms/static/js/vendor/swfobject/swfobject.js rename to common/static/js/vendor/swfobject/swfobject.js diff --git a/lms/static/js/vendor/swfobject/test.swf b/common/static/js/vendor/swfobject/test.swf similarity index 100% rename from lms/static/js/vendor/swfobject/test.swf rename to common/static/js/vendor/swfobject/test.swf diff --git a/cms/static/js/vendor/underscore-min.js b/common/static/js/vendor/underscore-min.js similarity index 100% rename from cms/static/js/vendor/underscore-min.js rename to common/static/js/vendor/underscore-min.js diff --git a/common/templates/courseware_vendor_js.html b/common/templates/courseware_vendor_js.html new file mode 100644 index 0000000000..6f774bbdfc --- /dev/null +++ b/common/templates/courseware_vendor_js.html @@ -0,0 +1,14 @@ +<%namespace name='static' file='static_content.html'/> + + + + + + + + +## codemirror + + + +<%include file="mathjax_include.html" /> diff --git a/lms/templates/mathjax_include.html b/common/templates/mathjax_include.html similarity index 100% rename from lms/templates/mathjax_include.html rename to common/templates/mathjax_include.html diff --git a/common/templates/xmodule_display.html b/common/templates/xmodule_display.html new file mode 100644 index 0000000000..7fd7a08cb2 --- /dev/null +++ b/common/templates/xmodule_display.html @@ -0,0 +1,3 @@ +
      + ${content} +
      diff --git a/common/templates/xmodule_edit.html b/common/templates/xmodule_edit.html new file mode 100644 index 0000000000..25341b8902 --- /dev/null +++ b/common/templates/xmodule_edit.html @@ -0,0 +1,3 @@ +
      + ${content} +
      diff --git a/common/test/data/full/about/description.html b/common/test/data/full/about/description.html new file mode 100644 index 0000000000..305dc51750 --- /dev/null +++ b/common/test/data/full/about/description.html @@ -0,0 +1,3 @@ +6.002x (Circuits and Electronics) is designed to serve as a first course in an undergraduate electrical engineering (EE), or electrical engineering and computer science (EECS) curriculum. At MIT, 6.002 is in the core of department subjects required for all undergraduates in EECS. + +The course introduces engineering in the context of the lumped circuit abstraction. Topics covered include: resistive elements and networks; independent and dependent sources; switches and MOS transistors; digital abstraction; amplifiers; energy storage elements; dynamics of first- and second-order networks; design in the time and frequency domains; and analog and digital circuits and applications. Design and lab exercises are also significant components of the course. You should expect to spend approximately 10 hours per week on the course. \ No newline at end of file diff --git a/common/test/data/full/about/faq.html b/common/test/data/full/about/faq.html new file mode 100644 index 0000000000..a5e54c9f15 --- /dev/null +++ b/common/test/data/full/about/faq.html @@ -0,0 +1,14 @@ +
        +
      • What is the format of the class? +

        The course will consist of 24 lectures, each lasting 50 minutes. There will be regular assignments consisting of map tests and short essays.

        +
      • +
      • Are there any prerequisites? +

        No - anyone and everyone is welcome to take this course.

        +
      • +
      • What textbook should I buy? +

        Although the lectures are designed to be self-contained, we recommend (but do not require) that students refer to the book Worlds Together, Worlds Apart: A History of the World: From 1000 CE to the Present (W W Norton, 3rd edition) -- Volume II, which was written specifically for this course.

        +
      • +
      • Does Harvard award credentials or reports regarding my work in this course? +

        Princeton does not award credentials or issue reports for student work in this course. However, Coursera could maintain a record of your score on the assessments and, with your permission, verify that score for authorized parties.

        +
      • +
      diff --git a/common/test/data/full/about/more_info.html b/common/test/data/full/about/more_info.html new file mode 100644 index 0000000000..0f5836381e --- /dev/null +++ b/common/test/data/full/about/more_info.html @@ -0,0 +1,9 @@ +
      +

      Who should take this?

      +

      If you're one of the many who have a unquenched interest in the worlds history, you'll love this course.

      +
      + +
      +

      Who shouldn't take this?

      +

      No one. Anyone and everyone is welcome to take this course.

      +
      \ No newline at end of file diff --git a/common/test/data/full/about/requirements.html b/common/test/data/full/about/requirements.html new file mode 100644 index 0000000000..5890d9c036 --- /dev/null +++ b/common/test/data/full/about/requirements.html @@ -0,0 +1,2 @@ +

      In order to succeed in this course, you must have taken an AP level physics course in electricity and magnetism. You must know basic calculus and linear algebra and have some background in differential equations. Since more advanced mathematics will not show up until the second half of the course, the first half of the course will include an optional remedial differential equations component for those who need it.

      +

      The course web site was developed and tested primarily with Google Chrome. We support current versions of Mozilla Firefox as well. The video player is designed to work with Flash. While we provide a partial non-Flash fallback for the video, as well as partial support for Internet Explorer, other browsers, and tablets, portions of the functionality will be unavailable.

      \ No newline at end of file diff --git a/common/test/data/full/about/syllabus.html b/common/test/data/full/about/syllabus.html new file mode 100644 index 0000000000..af41f420f5 --- /dev/null +++ b/common/test/data/full/about/syllabus.html @@ -0,0 +1,17 @@ +
        +
      • Week 1: What is World History?
      • +
      • Week 2: Peoples, Plagues and Plunders
      • +
      • Week 3: Warfare and Motion
      • +
      • Week 4: Conquests
      • +
      • Week 5: The Beginnings of Globalization in the Atlantic Worlds
      • +
      • Week 6: The Beginnings of Globalization in the Indian Ocean Worlds
      • +
      • Week 7: The Worlds that Merchants Made
      • +
      • Week 8: The Seventeenth-Century Crisis
      • +
      • Week 9: Empire and Enlightenment
      • +
      • Week 10: The Wealth of Nations
      • +
      • Week 11: The World in Revolution
      • +
      • Week 12: States and Nations
      • +
      • Week 13: Global Frontiers
      • +
      • Week 14: Empires and Nations
      • +
      • Week 15: Back to the Future
      • +
      diff --git a/common/test/data/full/about/textbook.html b/common/test/data/full/about/textbook.html new file mode 100644 index 0000000000..f07e7bac75 --- /dev/null +++ b/common/test/data/full/about/textbook.html @@ -0,0 +1 @@ +

      The course uses the textbook Foundations of Analog and Digital Electronic Circuits, by Anant Agarwal and Jeffrey H. Lang. Morgan Kaufmann Publishers, Elsevier, July 2005. While recommended, the book is not required: relevant sections will be provided electronically as part of the online course for personal use in connection with this course only. The copyright for the book is owned by Elsevier. The book can be purchased on Amazon.

      \ No newline at end of file diff --git a/common/test/data/full/about/video.html b/common/test/data/full/about/video.html new file mode 100644 index 0000000000..2959101024 --- /dev/null +++ b/common/test/data/full/about/video.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/common/test/data/full/chapter/Overview.xml b/common/test/data/full/chapter/Overview.xml new file mode 100644 index 0000000000..89917d20da --- /dev/null +++ b/common/test/data/full/chapter/Overview.xml @@ -0,0 +1,10 @@ + +