remove @file comments
This commit is contained in:
parent
e6e0ca561a
commit
0defd97ebc
10 changed files with 10 additions and 44 deletions
|
@ -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(){
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{#
|
||||
# @file
|
||||
# templates for the upper right autocomplete results
|
||||
#}
|
||||
|
||||
|
||||
<div className="templates">
|
||||
<script type="text/template" id="mapInfoBoxTemplate">
|
||||
|
|
|
@ -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 }">
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{#
|
||||
# @file
|
||||
# Code to display a map
|
||||
# /maps/:id
|
||||
#}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{#
|
||||
# @file
|
||||
# The inner HTML of the cheatsheet
|
||||
#}
|
||||
|
||||
|
||||
<h3>HELP</h3>
|
||||
|
||||
|
|
|
@ -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|}
|
||||
|
||||
|
|
|
@ -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 || {}
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{#
|
||||
# @file
|
||||
# /users/:id/edit
|
||||
# User edit form
|
||||
#}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue