http -> https fixes

This commit is contained in:
Ilya Kantor 2015-04-19 15:37:16 +03:00
parent 6aae3a1b13
commit e2a78fa99b
34 changed files with 39 additions and 39 deletions

View file

@ -192,7 +192,7 @@ var result = compiled({
```html
<!--+ run height=120 autorun -->
<script src="http://knockoutjs.com/downloads/knockout-3.1.0.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js"></script>
Поменяйте имя: <input *!*data-bind="value: name, valueUpdate: 'input'"*/!*>
<hr>
@ -231,7 +231,7 @@ ko.applyBindings(user, document.body);
```html
<!--+ run no-beautify -->
<script src="http://knockoutjs.com/downloads/knockout-3.1.0.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js"></script>
<script>
var user = ko.observable("Вася");

View file

@ -215,7 +215,7 @@ ul.appendChild(fragment); // вместо фрагмента вставятся
<head>
<meta charset="utf-8">
<script src="https://cdn.polyfill.io/v1/polyfill.js?features=Element.prototype.append"></script>
<script src="https://cdn.polyfill.io/v1/polyfill.js?features=Element.prototype.append,Element.prototype.after"></script>
</head>
<body>

View file

@ -103,7 +103,7 @@ Firefox/Chrome/Opera автозаполняют формы по `DOMContentLoade
};
*/!*
</script>
<iframe src="http://example.com/" style="height:60px"></iframe>
<iframe src="https://example.com/" style="height:60px"></iframe>
<img src="https://js.cx/clipart/yozhik.jpg?speed=1">
```

View file

@ -29,7 +29,7 @@
});
document.querySelector('#heroes').addEventListener('select', function(event) {
alert(event.value);
alert(event.detail);
});
</script>

View file

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="tree.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="tree.js"></script>
</head>

View file

@ -62,7 +62,7 @@ jQuery.cache[id]['prop'] = { anything: "любой объект" };
```html
<!--+ run -->
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<div id="data"></div>

View file

@ -43,7 +43,7 @@
```html
<!--+ run height=120 -->
<iframe src="http://example.com" style="height:100px"></iframe>
<iframe src="https://example.com" style="height:100px"></iframe>
<script>
var iframe = document.getElementsByTagName('iframe')[0];

View file

@ -36,7 +36,7 @@
```html
<!--+ run -->
<iframe src="http://example.com"></iframe>
<iframe src="https://example.com"></iframe>
<script>
var iframe = document.body.children[0];
@ -63,7 +63,7 @@
```html
<!--+ run -->
<iframe src="http://example.com"></iframe>
<iframe src="https://example.com"></iframe>
<script>
var iframe = document.body.children[0];

View file

@ -20,14 +20,14 @@
<ul>
<li>По адресу [](http://code.jquery.com/jquery-latest.js) -- доступна всегда последняя версия</li>
<li>С сети Google: [](https://developers.google.com/speed/libraries/devguide?hl=ru#jquery) можно загрузить любую из не слишком старых версий. Синтаксис такой: `src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"`, где `1.8.3` -- версия, причём можно указать её приблизительно: `1.8` означает последнюю версию вида `1.8.*`, а `1` -- последнюю версию вида `1.*`. Файл `jquery.min.js` обозначает сжатый код, а `jquery.js` -- несжатый, для удобства отладки.</li>
<li>С сети Google: [](https://developers.google.com/speed/libraries/devguide?hl=ru#jquery) можно загрузить любую из не слишком старых версий. Синтаксис такой: `src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"`, где `1.8.3` -- версия, причём можно указать её приблизительно: `1.8` означает последнюю версию вида `1.8.*`, а `1` -- последнюю версию вида `1.*`. Файл `jquery.min.js` обозначает сжатый код, а `jquery.js` -- несжатый, для удобства отладки.</li>
</ul>
Например, подключим на страницу последнюю версию jQuery в несжатом виде и проверим её работу:
```html
<!--+ run -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
alert( typeof $ ); // если jQuery загрузилась -- выведет function

View file

@ -61,7 +61,7 @@ jQuery-объект также называют "jQuery-коллекцией", "
```html
<!--+ run -->
<!-- подключить библиотеку -->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<ul>
<li><a href="http://jquery.com">jQuery</a></li>
@ -125,7 +125,7 @@ $('a', menu);
```html
<!--+ run -->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<ul>
<li>
@ -172,7 +172,7 @@ $('li a').each(function(i, a) {
```html
<!--+ run -->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<a href="http://wikipedia.ru">Википедия</a>

View file

@ -261,7 +261,7 @@
```html
<!--+ run -->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<ul id="1">
<li><a href="http://blog.jquery.com">jQuery Blog</a></li>

View file

@ -3,7 +3,7 @@
<head>
<link type="text/css" rel="stylesheet" href="bagua.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<script src="dateselector.js"></script>
</head>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<script src="dateselector.js"></script>
</head>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
body {
height: 2000px;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
body {
height: 2000px;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<link type="text/css" rel="stylesheet" href="window.css" />
<style>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<link type="text/css" rel="stylesheet" href="window.css" />
<style>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<style>
html,

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
body {
height: 2000px;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
body {
height: 2000px;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
.resize-wrapper {
position: relative;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<link type="text/css" rel="stylesheet" href="window.css" />
<style>

View file

@ -7,7 +7,7 @@
<link type="text/css" rel="stylesheet" href="calendar.css">
<link type="text/css" rel="stylesheet" href="datepicker.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<script src="calendar.js"></script>

View file

@ -7,7 +7,7 @@
<link type="text/css" rel="stylesheet" href="calendar.css">
<link type="text/css" rel="stylesheet" href="datepicker.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<script src="calendar.js"></script>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
.crop-area {
position: absolute;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
.menu {
padding: 5px;

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<style>
.menu {
padding: 5px;

View file

@ -5,7 +5,7 @@
<meta charset="utf-8">
<link href="tree.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.2.0/lodash.js"></script>
<script src="regions.js"></script>
<script src="tree.js"></script>

View file

@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- saved from url=(0095)http://wordstat.yandex.ru/regions_ru.html?cmd=showgeo&media=&geo=&bid=undefined&my_id=undefined -->
<title>Выбор регионов</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript">
function GenerateAll() {

View file

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="calendar.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="calendar.js"></script>
</head>

View file

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="calendar.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="calendar.js"></script>
</head>