Skip to content

Instantly share code, notes, and snippets.

@danscotton
Created July 6, 2012 11:00
Show Gist options
  • Select an option

  • Save danscotton/3059531 to your computer and use it in GitHub Desktop.

Select an option

Save danscotton/3059531 to your computer and use it in GitHub Desktop.
======
BEFORE
======
// base.spv
86: 'locator': '../../../locator/news/responsive/<?= $config['locatorVersion'] ?>/js/'
// localweather.js
3: 'locator/module/main',
=====
AFTER
=====
// base.spv
// fix: add '/module/'
86: 'locator': '../../../locator/news/responsive/<?= $config['locatorVersion'] ?>/js/module/'
// localweather.js
// fix: remove '/module/'
3: 'locator/main',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment