Skip to content

Commit

Permalink
Issue #875. Move cssfixme scripts to lib/ (and fix css-fixme typo)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Taylor committed Dec 16, 2015
1 parent 874b1ce commit 9ad6b71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ webcompat/static/js/diagnose.js
webcompat/static/js/issues.js
webcompat/static/js/issue-list.js
webcompat/static/js/user-activity.js
webcompat/static/js/cssfixme/cssfixme.js
webcompat/static/js/cssfixme.js
webcompat/**/*.min.js
webcompat/**/*.min.css
webcompat/**/*.dev.css
Expand Down
2 changes: 1 addition & 1 deletion grunt-tasks/concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function(grunt) {
'git_modules/css-fixme/js/css-fixme.js',
'<%= jsPath %>/lib/css-fixme-ui.js'
],
dest: '<%= jsPath %>/cssfixme/cssfixme.js'
dest: '<%= jsPath %>/cssfixme.js'
}
});
};
2 changes: 1 addition & 1 deletion webcompat/templates/cssfixme.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{%- if config.PRODUCTION or config.DEVELOPMENT -%}
<script src="{{ url_for('static', filename='js/cssfixme.min.js')|bust_cache }}"></script>
{%- else -%}
<script src="{{ url_for('static', filename='js/lib/css-fixme.js') }}"></script>
<script src="{{ url_for('static', filename='js/cssfixme.js') }}"></script>
{%- endif -%}
{%- endblock %}
</main>
Expand Down

0 comments on commit 9ad6b71

Please sign in to comment.