Skip to content

Commit

Permalink
moving and adding to img directory
Browse files Browse the repository at this point in the history
https://commons.wikimedia.org/wiki/File:Satellites_icon201001.svg
public domain!

I need to change the default width for that as well.
  • Loading branch information
Matt Katz committed Aug 5, 2013
1 parent 0d32fcf commit a7adea9
Show file tree
Hide file tree
Showing 6 changed files with 333 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .ditz/issue-aeefb921a419ebc905f8889d436f05f2328bf35e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type: :feature
component: Orbital
release: 0.1.1
reporter: Matt Katz <[email protected]>
status: :unstarted
status: :in_progress
disposition:
creation_time: 2013-07-09 02:48:47.950917 Z
references: []
Expand All @@ -20,3 +20,7 @@ log_events:
- Matt Katz <[email protected]>
- assigned to release 0.1.1 from unassigned
- ""
- - 2013-08-05 01:47:09.910329 Z
- Matt Katz <[email protected]>
- changed status from unstarted to in_progress
- adding in a satellite icon
26 changes: 26 additions & 0 deletions .ditz/issue-b78777cc104ae3b196bbdf9a6485b1b409a8a318.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
--- !ditz.rubyforge.org,2008-03-06/issue
title: move images to one directory
desc: don't mix in with everything.
type: :task
component: Orbital
release: 0.1.1
reporter: Matt Katz <[email protected]>
status: :closed
disposition: :fixed
creation_time: 2013-08-05 01:43:26.853969 Z
references: []

id: b78777cc104ae3b196bbdf9a6485b1b409a8a318
log_events:
- - 2013-08-05 01:43:29.248983 Z
- Matt Katz <[email protected]>
- created
- ""
- - 2013-08-05 01:43:48.617642 Z
- Matt Katz <[email protected]>
- changed status from unstarted to in_progress
- ""
- - 2013-08-05 01:46:09.594951 Z
- Matt Katz <[email protected]>
- closed with disposition fixed
- ""
298 changes: 298 additions & 0 deletions img/Satellites_icon201001.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
6 changes: 3 additions & 3 deletions mainwindow.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div id="orbital-content" >
<div class="indicator" ng-show="isLoading">
<img src="<?php
echo plugins_url("ajax-loader.gif", __FILE__);
echo plugins_url("img/ajax-loader.gif", __FILE__);
?>">
</div>
<ul id='orbital-entries' class="entries" infinite-scroll="addMoreEntries()" infinite-scroll-disabled='isLoading' infinite-scroll-parent='true' infinite-scroll-distance="2" >
Expand All @@ -25,7 +25,7 @@
</div>
<div class="indicator" ng-show="entry.isLoading">
<img src="<?php
echo plugins_url("ajax-loader.gif", __FILE__);
echo plugins_url("img/ajax-loader.gif", __FILE__);
?>">
</div>
<div class="indicator" ng-show="entry.isRead">
Expand Down Expand Up @@ -60,7 +60,7 @@
<div id='subscription-window' ng-show="reveal" ng-controller="SubsCtrl" class="modal-window" >
<div class='indicator' ng-show="isLoading" >
<img src="<?php
echo plugins_url("ajax-loader.gif", __FILE__);
echo plugins_url("img/ajax-loader.gif", __FILE__);
?>">
</div>
<div ng-hide="feedCandidate">
Expand Down
2 changes: 1 addition & 1 deletion orbital.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function orbital_plugin_menu(){
$menu_title = $page_title;
$capability = 'edit_posts';
//We add the hook for our menu item on the main menu
$main = add_menu_page( $page_title, $menu_title, $capability, $orbital_slug, 'generate_main_page');
$main = add_menu_page( $page_title, $menu_title, $capability, $orbital_slug, 'generate_main_page',plugins_url('img/Satellites_icon201001.svg',__FILE__));
//Settings page
$settings = add_submenu_page( $orbital_slug, 'Settings', 'Settings', $capability, $orbital_settings_slug, 'orbital_settings');
//add hook for feed management page
Expand Down

0 comments on commit a7adea9

Please sign in to comment.