remove @file comments

This commit is contained in:
Connor Turland 2018-03-05 12:45:36 -05:00
parent e6e0ca561a
commit 0defd97ebc
10 changed files with 10 additions and 44 deletions

View file

@ -1,7 +1,4 @@
{#
# @file
# Google analytics, rendered on every page
#}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){

View file

@ -1,7 +1,4 @@
{#
# @file
# The inner HTML of the account box that comes up in the bottom left
#}
<div id="lightbox_overlay">
<div id="lightbox_main">
<a id="lightbox_close" href="#"></a>

View file

@ -1,7 +1,4 @@
{#
# @file
# templates for the upper right autocomplete results
#}
<div className="templates">
<script type="text/template" id="mapInfoBoxTemplate">

View file

@ -1,9 +1,4 @@
{#
# @file
# Main application file. Holds scaffolding present on every page.
# Then a certain non-partial view (no _ preceding filename) will be
# displayed within, based on URL
#}
{ render :partial => 'layouts/head' }
<body className="{ current_user ? "authenticated" : "unauthenticated" } controller-{ controller_name } action-{ action_name }">

View file

@ -1,8 +1,4 @@
{#
# @file
# Code to display a map
# /maps/:id
#}

View file

@ -1,7 +1,4 @@
{#
# @file
# The inner HTML of the cheatsheet
#}
<h3>HELP</h3>

View file

@ -1,7 +1,4 @@
{#
# @file
# Partial view, renders a form that creates a new map.
#}
<div className="onConsole">
{ form_for Map.new, url: maps_url, remote: true, html: { className: "new_map", id: "fork_map" } do |form|}

View file

@ -1,7 +1,4 @@
{#
# @file
# this code generates the list of icons that will drop down in the metacode select list on the topic card
#}
<script>
Metamaps.ServerData = Metamaps.ServerData || {}

View file

@ -1,7 +1,4 @@
{#
# @file
# The inner HTML for switching your metacode set
#}
{ metacodes = current_user.settings.metacodes }
{ selectedSet = metacodes[0].include?("metacodeset") ? metacodes[0].sub("metacodeset-","") : "custom" }

View file

@ -1,8 +1,4 @@
{#
# @file
# /users/:id/edit
# User edit form
#}