rename some examples
This commit is contained in:
parent
71218cd61f
commit
7bd83e7b9f
11 changed files with 3 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Lenna</title>
|
<title>Image Manipulation</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<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="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
|
||||||
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Cities</title>
|
<title>List of Cities</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<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="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
|
||||||
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
|
@ -88,20 +88,7 @@ Ox.load({UI: {showScreen: true}, Geo: {}}, function() {
|
||||||
south: data.latitude - latSize / 2,
|
south: data.latitude - latSize / 2,
|
||||||
west: data.longitude - lngSize / 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({
|
var $preview = Ox.Button({
|
||||||
disabled: true,
|
disabled: true,
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Countries</title>
|
<title>List of Countries</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<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="shortcut icon" type="image/png" href="../../source/Ox.UI/themes/classic/png/icon16.png"/>
|
||||||
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
<link rel="stylesheet" type="text/css" href="css/example.css"/>
|
Loading…
Reference in a new issue