rename some examples

This commit is contained in:
rolux 2012-06-21 08:16:34 +02:00
parent 71218cd61f
commit 7bd83e7b9f
11 changed files with 3 additions and 16 deletions

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Lenna</title>
<title>Image Manipulation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
<link rel="stylesheet" type="text/css" href="css/example.css"/>

View file

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Cities</title>
<title>List of Cities</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
<link rel="stylesheet" type="text/css" href="css/example.css"/>

View file

@ -88,20 +88,7 @@ Ox.load({UI: {showScreen: true}, Geo: {}}, function() {
south: data.latitude - latSize / 2,
west: data.longitude - lngSize / 2
};
/**/
});
/*
Ox.print(
JSON.stringify(
cities.sort(function(a, b) {
return a.country + ', ' + a.name < b.country + ', ' + b.name ? -1
: a.country + ', ' + a.name > b.country + ', ' + b.name ? 1 : 0
}).map(function(city) {
return city.name + ', ' + city.country
})
)
);
*/
var $preview = Ox.Button({
disabled: true,

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Countries</title>
<title>List of Countries</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
<link rel="stylesheet" type="text/css" href="css/example.css"/>