Skip to content

Commit b9a4d6b

Browse files
committed
Fixing long-standing typo
1 parent 120bdd7 commit b9a4d6b

10 files changed

+14
-14
lines changed

README.textile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ For more information, we have a "project site":http://ding.ooh.dk/ as well as a
55

66
h2. How to get started
77

8-
We still haven't written a guide to install the system, but for the die-hards we have a "danish mini-guide here":https://libraryding.lighthouseapp.com/projects/27862/setup
8+
We still haven't written a guide to install the system, but for the die-hards we have a "danish mini-guide here":https://libraryding.lighthouseapp.com/projects/27862/setup

ding-documentation/theming.textile

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ overall design file
3737
* panels-twocol-left-stacked.tpl.php
3838

3939
* ding_event_similar_events.tpl.php
40-
* ding_panels_content_libary_location.tpl.php
41-
* ding_panels_content_libary_title.tpl.php
40+
* ding_panels_content_library_location.tpl.php
41+
* ding_panels_content_library_title.tpl.php
4242

4343

4444
h4. content templates
@@ -59,7 +59,7 @@ Library
5959
* views-view-fields--library-list--page.tpl.php
6060
listing of the librarys
6161
* location.tpl.php
62-
defnes the location element for a libary
62+
defnes the location element for a library
6363

6464
search
6565
* ting_record.tpl.php

ding_event/ding_event_similar_events.tpl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@
4949

5050
</li>
5151
<?php endforeach; ?>
52-
</ul>
52+
</ul>

ding_library/ding_library.status.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Drupal.behaviors.dingLibraryStatus = function () {
99
var settings = Drupal.settings.officeHours['node' + Drupal.settings.dingLibraryNids[0]];
1010
$.getJSON(settings.callback + '/' + Drupal.settings.dingLibraryNids.join(',') + '/' + settings.field_name, {}, function (response, textStatus) {
1111
$.each(response.data, function (nid, hoursData) {
12-
$('#node-' + nid + ' .libary-openstatus')
12+
$('#node-' + nid + ' .library-openstatus')
1313
.text(hoursData.status_local);
1414
});
1515
});

ding_library/ding_library_map/css/ding_library_map.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
#library-info .opening-hours dd { width: 60%; }
2626
#library-info .opening-hours dt { float: left; }
2727
#library-info .opening-hours dd { margin-left: 40%; }
28-
*:first-child+html #library-info .opening-hours dd { margin-left: 20%; } /* IE7 margin fix */
28+
*:first-child+html #library-info .opening-hours dd { margin-left: 20%; } /* IE7 margin fix */

ding_library/ding_library_map/js/jquery.scrollTo/jquery.scrollTo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,4 +191,4 @@
191191
return typeof val == 'object' ? val : { top:val, left:val };
192192
};
193193

194-
})( jQuery );
194+
})( jQuery );

ding_library/ding_library_map/js/jquery.url/jquery.url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,4 +225,4 @@ jQuery.url = function()
225225

226226
};
227227

228-
}();
228+
}();

ding_panels/ding_panels.module

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ function ding_panels_theme($existing, $type, $theme, $path) {
1313
return array(
1414
'ding_panels_content_library_title' => array(
1515
'arguments' => array('node' => NULL, 'display_header_image' => FALSE),
16-
'template' => 'ding_panels_content_libary_title',
16+
'template' => 'ding_panels_content_library_title',
1717
'preprocess functions' => array('ding_panels_content_preprocess_library_title'),
1818
),
1919
'ding_panels_content_library_location' => array(
2020
'arguments' => array('node' => NULL),
21-
'template' => 'ding_panels_content_libary_location',
21+
'template' => 'ding_panels_content_library_location',
2222
'preprocess functions' => array('ding_panels_content_preprocess_library_location'),
2323
),
2424
'ding_panels_library_portal_title' => array(

ding_panels/ding_panels_content_libary_location.tpl.php ding_panels/ding_panels_content_library_location.tpl.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33

44
/**
5-
* @file ding_panels_content_libary_location.tpl.php
5+
* @file ding_panels_content_library_location.tpl.php
66
* Library location, map, etc.
77
*/
88

@@ -43,4 +43,4 @@
4343
</div>
4444
</div>
4545

46-
</div>
46+
</div>

ding_panels/ding_panels_content_libary_title.tpl.php ding_panels/ding_panels_content_library_title.tpl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
<?php } ?>
1010

1111
<h1><?php print $library_title; ?></h1>
12-
<?php print $library_navigation; ?>
12+
<?php print $library_navigation; ?>

0 commit comments

Comments
 (0)