Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Файл - common.js:
- различия невозможно определить в SWF файлах.
- Файл - graph.js:
- 40. + 0x85afd0, 0xd391bb, 0x8ecfce, 0xa8d1a9, 0xe47070, 0xf2ec96, 0xf7be5a, 0xbeaadf,
- 42. - 0x6391bc, 0xc77bb1, 0x62b1bc, 0x80bb88, 0xb75454, 0xc9c255, 0xdca94f, 0x997fc4,
- 43. - 0x85afd0, 0xc77bb1, 0x8ecfce, 0x80bb88, 0xe47070, 0xc9c255, 0xf7be5a, 0xbeaadf];
- 44. + 0x6391bc, 0xbc6b9e, 0x62b1bc, 0x69a57a, 0xb75454, 0xd4ce68, 0xdca94f, 0x997fc4];
- 207. - function drawLines(ctx, x, y, w, h, lines, stTime, enTime, xfactor, yfactor, yDelta, zoomedOut, active, smooth) {
- 208. - smooth = (!zoomedOut) && smooth;
- 209. + function drawLines(ctx, x, y, w, h, lines, stTime, enTime, xfactor, yfactor, yDelta, zoomedOut, active) {
- 210. + var smooth = (!zoomedOut) && ((enTime - stTime) < (35 * 24 * 60 * 60));
- 412. - setStyle(this.graphDiv, {fontFamily: 'tahoma, arial, verdana, sans-serif, Lucida Sans', fontSize: '11px', color: '#36638e', width: this.viewWidth + 'px', clear: 'both', lineHeight: '130%'});
- 413. + setStyle(this.graphDiv, {fontFamily: 'tahoma, arial, verdana, sans-serif, Lucida Sans', fontSize: '11px', color: '#36638e', width: this.viewWidth + 'px', clear: 'both'});
- 455. - var defaultGraph = 0;
- 457. - if (!params.multiple.def) params.multiple.def = 0;
- 458. + if (!params.multiple.del) params.multiple.def = 0;
- 487. - defaultGraph = params.multiple.def;
- 499. - dragElement: null, maskDragging: false, viewClick: false, smoothLines: false,
- 500. + dragElement: null, maskDragging: false, viewClick: false,
- 561. - graph.setData((typeof(data) == 'string') ? data : (data[defaultGraph] || []), isArray(params.adjust) ? params.adjust[0] : params.adjust);
- 562. + graph.setData((typeof(data) == 'string') ? data : (data[0] || []), isArray(params.adjust) ? params.adjust[0] : params.adjust);
- 870. - if (!g.smoothLines || !tooltips) {
- 871. + if (g.rightTime - g.leftTime >= 35 * 24 * 60 * 60 || !tooltips) {
- 973. - var g = ev.currentTarget.graph, line = ev.currentTarget.line, dot = line.dotLabel.dot, pos = line.dotLabel.pos;
- 974. - if (!g.smoothLines) {
- 975. - var text = '';
- 976. - if (line.l) {
- 977. - text += langNumeric(dot.y, line.l, true);
- 978. - } else {
- 979. - text += (dot.l ? dot.l : formatValue(dot.y)) + ' ' + line.name;
- 980. + var g = ev.currentTarget.graph, line = ev.currentTarget.line;
- 981. + for (var l = 0; l < g.lines.length; l++) {
- 982. + if (g.lines[l] == line) {
- 983. + g.showDotTT(l);
- 984. + break;;
- 986. - line.dotLabel.innerHTML = text;
- 987. - var sz = getSize(line.dotLabel)[0];
- 988. - if (pos + sz + line.dot.posX > g.viewWidth) {
- 989. - line.dotLabel.innerHTML = line.name + ' ' + (dot.l ? dot.l : formatValue(dot.y));
- 990. - line.dotLabel.style.left = pos - (sz - line.dotLabel.w) + "px";
- 991. - } else
- 992. - line.dotLabel.style.left = pos + "px";
- 993. -
- 994. - for (var l = 0; l < g.lines.length; l++)
- 995. - g.lines[l].dotLabel.style.zIndex = (g.lines[l] == line) ? 1000 : 200;
- 1024. - if (!this.smoothLines) {
- 1025. + if (this.rightTime - this.leftTime >= 35 * 24 * 60 * 60) {
- 1037. - text += (dot.l ? dot.l : formatValue(dot.y)) + ' – ' + line.name;
- 1038. + text += (dot.l ? dot.l : formatValue(dot.y)) + ' ' + line.name;
- 1112. - drawLines(ctx, 0, 4, this.viewWidth, 32, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, -this.minValue, true, null, false);
- 1113. + drawLines(ctx, 0, 4, this.viewWidth, 32, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, -this.minValue, true, null);
- 1115. - drawLines(ctx, 0, 4, this.viewWidth, 36, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, 0, true, null, false);
- 1116. + drawLines(ctx, 0, 4, this.viewWidth, 36, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, 0, true, null);
- 1143. - var localMax = (this.adjust ? -1e9 : 0), localMin = (this.adjust ? 1e9 : 0), outMax = 0, outMin = 0, dotsVisible = 0;
- 1144. + var localMax = (this.adjust ? -1e9 : 0), localMin = (this.adjust ? 1e9 : 0), outMax = 0, outMin = 0;
- 1155. - if (enIdx >= stIdx && (ps[enIdx].x >= this.leftTime) && (ps[stIdx].x <= this.rightTime)) {
- 1156. + if (enIdx >= stIdx && (ps[enIdx].x >= this.leftTime) && (ps[stIdx].x <= this.rightTime))
- 1163. - dotsVisible = Math.max(dotsVisible, enIdx - stIdx);
- 1164. - }
- 1184. - this.smoothLines = dotsVisible < 30 ? true : false;
- 1292. - drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 43, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, -this.localBottom, false, this.activeLine, this.smoothLines);
- 1293. + drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 43, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, -this.localBottom, false, this.activeLine);
- 1295. - drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 34, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, this.adjust ? -this.localBottom : 0, false, this.activeLine, this.smoothLines);
- 1296. + drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 34, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, this.adjust ? -this.localBottom : 0, false, this.activeLine);
- 1436. - addEventEx(this, line.dotLabel, 'mouseover', this.expandLabel);
- 1437. + //addEventEx(this, line.dotLabel, 'mouseover', this.expandLabel);
- 1597. - var colors_row = l % 4;
- 1598. - colors_row = colors_row == 1 ? 3 : colors_row;
- 1599. - line.c = colors[(colors_row * 8 + Math.floor(l / 4)) % colors.length];
- 1600. + line.c = colors[((l % 4) * 8 + Math.floor(l / 4)) % colors.length];
- ------
- Файл - qsorter.js:
- 87. - cur.qsorterOver = false;
- 335. - if (browser.mobile) return;
- 336. - var s = parent.qsorter;
- 337. - extend(s, opts);
- 338. - s.count = 0;
- 339. - s.elems = [];
- 340. - if (s.dragCont) {
- 341. - s.updateDragCont();
- 342. - }
- 343. - this.added(parent);
- 344. + var s = parent.qsorter;
- 345. + extend(s, opts);
- 346. + s.count = 0;
- 347. + s.elems = [];
- 348. + if (s.dragCont) {
- 349. + s.updateDragCont();
- 350. + }
- 351. + this.added(parent);
- 354. - if (browser.mobile) return;
- ------
- Файл - phototag.js:
- 1. - startTag: function() {
- 2. + startTag: function(toProfile) {
- 5. - if (!cur.pvFriends) {
- 6. + cur.pvTagToProfile = toProfile = (toProfile === true);
- 7. + if (!cur.pvFriends && !toProfile) {
- 43. - if (!cur.pvFriendsList) {
- 44. + if (!cur.pvFriendsList && !toProfile) {
- 55. - cur.pvTagInfo.innerHTML = '<div class="msg"><a class="fl_r" onclick="Phototag.stopTag()">' + getLang('global_done') + '</a>' + getLang('photos_select_tag_area') + '</div>';
- 56. - show(cur.pvTagInfo);
- 57. + if (!toProfile) {
- 58. + cur.pvTagInfo.innerHTML = '<div class="msg"><a class="fl_r" onclick="Phototag.stopTag()">' + getLang('global_done') + '</a>' + getLang('photos_select_tag_area') + '</div>';
- 59. + show(cur.pvTagInfo);
- 60. + }
- 66. -
- 67. - if (!cur.pvTagger) return;
- 68. - var options = {
- 69. - minw: 30,
- 70. - minh: 30,
- 71. - onStart: (browser.msie || browser.mozilla) ? hide.pbind(cur.pvFriends) : fadeOut.pbind(cur.pvFriends, 200),
- 72. - onFinish: Phototag.showFriends
- 73. - }, ph = cur.pvData[cur.pvListId][cur.pvIndex];
- 74. + // stManager.add(['tagger.css', 'tagger.js'], function() {
- 75. + if (!cur.pvTagger) return;
- 76. + var options = toProfile ? {
- 77. + minw: 50,
- 78. + minh: 50
- 79. + } : {
- 80. + minw: 30,
- 81. + minh: 30,
- 82. + onStart: (browser.msie || browser.mozilla) ? hide.pbind(cur.pvFriends) : fadeOut.pbind(cur.pvFriends, 200),
- 83. + onFinish: Phototag.showFriends
- 84. + }, ph = cur.pvData[cur.pvListId][cur.pvIndex];
- 85. + if (toProfile) {
- 86. + if (ph.tagged[vk.id]) {
- 87. + var coords = clone(ph.tags[ph.tagged[vk.id]]);
- 88. + each(coords, function(i, v) {
- 89. + var wh = cur[(i % 2) ? 'pvPhHeight' : 'pvPhWidth'];
- 90. + coords[i] = positive(v * wh / 100);
- 91. + });
- 92. + options.rect = {left: coords[0], top: coords[1], width: (coords[2] - coords[0]), height: (coords[3] - coords[1])};
- 93. + Photoview.hideTag(true);
- 94. + } else {
- 95. + var l = Math.min(Math.max(Math.floor((cur.pvPhWidth - 50) / 2), 0), 20);
- 96. + var t = Math.min(Math.max(Math.floor((cur.pvPhHeight - 50) / 2), 0), 20);
- 97. + options.rect = {left: l, top: t, width: cur.pvPhWidth - l * 2, height: cur.pvPhHeight - t * 2};
- 98. + }
- 99. + cur.pvTagInfo.innerHTML = '\
- 100. + <div class="fl_r button_gray"><button id="pv_prof_cancel">' + getLang('global_cancel') + '</button></div>\
- 101. + <div class="fl_r button_blue"><button id="pv_prof_done">' + getLang('global_done') + '</button></div>\
- 102. + <div class="progress fl_r" id="pv_prof_progress"></div>\
- 103. + <div class="pv_to_profile_desc">' + getLang('photos_crop_info') + '</div>';
- 104. + show(cur.pvTagInfo);
- 105. + ge('pv_prof_cancel').onclick = Phototag.stopTag;
- 106. + ge('pv_prof_done').onclick = Photoview.toProfile;
- 107. + }
- 109. - cur.pvTagger = photoTagger(cur.pvPhoto.firstChild, extend(options, {
- 110. - zstart: 600
- 111. - }));
- 112. + cur.pvTagger = photoTagger(cur.pvPhoto.firstChild, extend(options, {
- 113. + zstart: 600
- 114. + }));
- 115. + // });
- ------
- Файл - photoview.js:
- 152. + <form method="POST" target="pv_to_profile_frame" name="pv_to_profile_form" id="pv_to_profile_form"></form>\
- 728. - if (img.width < 200 || img.height < 200) {
- 729. - ph.actions.prof = false;
- 730. - }
- 731. + if (ph.toprof === true && (img.width < 200 || img.height < 200)) ph.actions.prof = false;
- 738. - ' + (ph.actions.prof ? ('<a id="pv_to_profile" onmouseover="Photoview.toProfileTag()" onmouseout="Photoview.hideTag()" onclick="showBox(\'al_page.php\', {act: \'owner_photo_edit\', photo: \'' + ph.id + '\'}, {stat: [\'owner_photo.css\', \'owner_photo.js\', \'tagger.css\', \'tagger.js\']});">' + getLang('photos_load_to_profile') + '</a>') : '') + '\
- 739. + ' + (ph.actions.prof ? ('<a id="pv_to_profile" onmouseover="Photoview.toProfileTag()" onmouseout="Photoview.hideTag()" ' + (ph.toprof === true ? 'onclick="showBox(\'al_page.php\', {act: \'owner_photo_edit\', photo: \'' + ph.id + '\'}, {stat: [\'owner_photo.css\', \'owner_photo.js\', \'tagger.css\', \'tagger.js\']});"' : 'onclick="stManager.add([\'phototag.js\', \'phototag.css\', \'tagger.css\', \'tagger.js\'], function() { Phototag.startTag(true); })"') + '>' + getLang('photos_load_to_profile') + '</a>') : '') + '\
- 1987. +
- 1988. + toProfile: function() {
- 1989. + var prg = ge('pv_prof_progress');
- 1990. + if (isVisible(prg)) return;
- 1991. +
- 1992. + hide(ge('pv_prof_cancel').parentNode, ge('pv_prof_done').parentNode);
- 1993. + show(prg);
- 1994. + cur.pvTagInfo.appendChild(ce('div', {id: 'pv_to_profile_frame', className: 'upload_frame', innerHTML: '<iframe name="pv_to_profile_frame"></iframe>'}));
- 1995. +
- 1996. + var listId = cur.pvListId, index = cur.pvIndex, ph = cur.pvData[listId][index], form = ge('pv_to_profile_form');
- 1997. + var xy = getSize(cur.pvPhoto.firstChild), rect = clone(cur.pvTagger.result());
- 1998. + each(rect, function(i) {
- 1999. + rect[i] = intval(rect[i] / xy[i % 2] * 10000);
- 2000. + });
- 2002. + form.innerHTML = '';
- 2003. + form.action = ph.toprof[0];
- 2004. + var data = extend({act: 'to_profile', crop: rect.join(','), list_id: listId, index: index, from_host: locHost, fid: ph.id}, ph.toprof);
- 2005. + for (var i in data) {
- 2006. + if (i != 0) {
- 2007. + form.appendChild(ce('input', {type: 'hidden', name: i, value: data[i]}));
- 2008. + }
- 2009. + }
- 2010. + form.submit();
- 2011. + },
- 2012. + toProfileFail: function() {
- 2013. + hide('pv_prof_progress');
- 2014. + show(ge('pv_prof_cancel').parentNode, ge('pv_prof_done').parentNode);
- 2015. + },
- ------
- Файл - video.js:
- 25. - if (browser.mobile) {
- 26. - cur.cansort = false;
- 27. - }
- 136. - },
- 137. - privateTooltip: function(obj) {
- 138. - showTooltip(obj, {
- 139. - black: 1,
- 140. - text: '<div style="padding: 2px;">'+getLang('video_is_private_tt')+'</div>',
- 141. - center: 0,
- 142. - shift: [14, 6, 0],
- 143. - });
- 144. -
- 145. - },
- 146. - privateClick: function(obj, ev) {
- 147. - geByClass1('video_row_icon_edit', obj.parentNode.parentNode.parentNode).click();
- 148. - return cancelEvent(ev);
- 149. -
- 251. - if (cur.sections[i][0] > 0) {
- 252. - albums.push(cur.sections[i]);
- 253. + if (i > 0) {
- 254. + albums.push([i, cur.sections[i][0]]);
- 325. - var vidCont = ge('video_row'+oid+'_'+vid);
- 326. - cur.restoreRaw[oid+'_'+vid] = vidCont.innerHTML;
- 327. - addClass(vidCont, 'video_row_loading');
- 328. + cur.restoreRaw[oid+'_'+vid] = ge('video_row'+oid+'_'+vid).innerHTML;
- 338. - for(var i in cur.sections) {
- 339. - if (cur.sections[i][0] == -1) {
- 340. - a.unshift([-1, cur.sections[i][1]]);
- 341. - }
- 342. + if (cur.sections[-1]) {
- 343. + a.unshift([-1, cur.sections[-1][0]]);
- 354. - var shown = isVisible('video_albums_more');
- 355. - html += '<a class="video_albums_show_more" onclick="Video.showAlbums(this)" style="'+(shown ? 'display: none' : '')+'">'+albumsMore+'</a><div id="video_albums_more" style="'+(shown ? 'display: block' : '')+'">';
- 356. + html += '<a class="video_albums_show_more" onclick="Video.showAlbums(this)">'+albumsMore+'</a><div id="video_albums_more">';
- 359. - for(var i in cur.sections) {
- 360. - if (cur.sections[i][0] == alb) {
- 361. - var v = cur.sections[i];
- 362. - }
- 363. - }
- 364. - var title = v[1];
- 365. + var v = cur.sections[alb];
- 366. + var title = v[0];
- 372. - }
- 373. - if (num > 3) {
- 374. - html += '</div>';
- 383. - if (cur.sections[i][0] > 0) {
- 384. + if (i > 0) {
- 389. - cur.sections.push(newList[i]);
- 390. + cur.sections[i] = newList[i];
- 403. - if (cur.cansort) {
- 404. - qsorter.update(cur.vRows, {dragEls: geByClass('video_album_candrop', cur.albumsCont)});
- 405. - }
- 420. - /*if (browser.mobile) {
- 421. - cur.vSection = 'search';
- 422. - } else {*/
- 423. - nav.change({section: 'search'});
- 424. - /*}*/
- 425. + nav.change({section: 'search'});
- 443. - if (len < 10) {
- 444. + if (len < 10 && !cur.editmode) {
- 666. - if (vk.id == cur.oid || (cur.oid < 0 && cur.isGroupAdmin)) {
- 667. - str += '<span class="divider">|</span><span><a onclick="Video.deleteAlbum(\'' + cur.vSection + '\');">' + getLang('video_delete_album') + '</a></span>';
- 668. - }
- 669. + str += '<span class="divider">|</span><span><a onclick="Video.deleteAlbum(\'' + cur.vSection + '\');">' + getLang('video_delete_album') + '</a></span>';
- 810. - }
- 811. - if (cur.cansort) {
- 812. - qsorter.added(cur.vRows);
- 815. - if (cur.vSection == 'search' && cur.vStr) { // search
- 816. +
- 817. + if (cur.vSection == 'search' && cur.vStr && !cur.editmode) { // search
- 869. - if (v[3].length > 44) {
- 870. - v[3] = trim(v[3].substr(0, 42))+'..';
- 871. - }
- 875. - return cur.videoTpl(v, (v[11].substr(0, 1) != '_') ? ' video_can_edit' : '');
- 876. + return cur.videoTpl(v, v[11] ? ' video_can_edit' : '');
- 1101. - } else {
- 1102. - var tabName = '';
- 1103. - for (var i in cur.sections) {
- 1104. - if (cur.sections[i][0] == ((section == 'tagged') ? -1 : parseInt(section.substr(6)))) {
- 1105. - tabName = cur.sections[i][1];
- 1106. - }
- 1107. -
- 1108. - }
- 1109. + } else if (cur.sections[(section == 'tagged') ? -1 : parseInt(section.substr(6))]) {
- 1110. + var tabName = cur.sections[(section == 'tagged') ? -1 : parseInt(section.substr(6))][0];
- 1130. - if (cur.cansort) {
- 1131. - qsorter.update(cur.vRows, {dragEls: geByClass('video_album_candrop', cur.albumsCont)});
- 1132. - }
- 1134. - deleteAlbum: function(section, ev) {
- 1135. + deleteAlbum: function(section) {
- 1137. - return cancelEvent(ev);
- 1138. - },
- 1139. - editAlbum: function(aid, ev) {
- 1140. - showBox('al_video.php', {act: 'edit_album', oid: cur.oid, aid: aid, oid: cur.oid});
- 1141. - return cancelEvent(ev);
- 1172. - },
- 1173. - albumOver: function(obj) {
- 1174. - if (cur.canEditAlbums && obj.id.split('_')[2] > 0) {
- 1175. - Video.activate(geByClass1('video_album_controls', obj));
- 1176. - }
- 1177. - },
- 1178. - albumOut: function(obj) {
- 1179. - if (cur.canEditAlbums) {
- 1180. - Video.deactivate(geByClass1('video_album_controls', obj), 0);
- 1181. - }
- 1182. - },
- 1183. -
- 1184. - addFromList: function(videoRaw, hash, ev) {
- 1185. - var videoCont = ge('video_cont'+videoRaw);
- 1186. - if (hasClass(videoCont, 'video_row_added')) {
- 1187. - return cancelEvent(ev);
- 1188. - }
- 1189. - videoview.addVideo(videoRaw, hash, false, false, false, 'list');
- 1190. - var videoEl = geByClass1('video_row_icon_add', videoCont);
- 1191. - if (videoEl && videoEl.tt) {
- 1192. - videoEl.tt.hide();
- 1193. - }
- 1194. - return cancelEvent(ev);
- 1196. -
- 1198. - var animEl = geByClass1((hasClass(obj.parentNode, 'video_can_edit')) ? 'video_row_controls' : 'video_row_add', obj);
- 1199. - Video.activate(animEl);
- 1200. + if (hasClass(obj.parentNode, 'video_can_edit')) {
- 1201. + Video.activate(geByClass1('video_row_controls', obj));
- 1202. + }
- 1205. - var animEl = geByClass1((hasClass(obj.parentNode, 'video_can_edit')) ? 'video_row_controls' : 'video_row_add', obj);
- 1206. - Video.deactivate(animEl, 0);
- 1207. + if (hasClass(obj.parentNode, 'video_can_edit')) {
- 1208. + Video.deactivate(geByClass1('video_row_controls', obj), 0);
- 1209. + }
- 1211. - activate: function(obj, ttLng, check) {
- 1212. + activate: function(obj) {
- 1214. - if (ttLng) {
- 1215. - if (check == 1 && hasClass(obj.parentNode.parentNode.parentNode.parentNode, 'video_row_added')) {
- 1216. - return false;
- 1217. - }
- 1218. - showTooltip(obj, {
- 1219. - black: 1,
- 1220. - center: 1,
- 1221. - shift: [0,2,0],
- 1222. - text: getLang('video_'+ttLng)
- 1223. - });
- 1224. - }
- 1271. - onDone: function(text, newList) {
- 1272. - showDoneBox(text);
- 1273. - Video.updateAlbums(newList);
- 1274. - /*moveEl.innerHTML = text;
- 1275. + onDone: function(text) {
- 1276. + moveEl.innerHTML = text;
- 1279. - setTimeout(Video.albumDragOut.pbind(el), 3000);*/
- 1280. + setTimeout(Video.albumDragOut.pbind(el), 3000);
- ------
- Файл - video.css:
- 364. - .video_row_controls, .video_album_controls, .video_row_add {
- 365. + .video_row_controls {
- 381. - display: block;
- 382. - }
- 383. - .video_albums_can_edit .video_album_controls {
- 393. - opacity: 0.8;
- 394. - filter: alpha(opacity=80);
- 395. - }
- 396. - .video_row_icon_add {
- 397. - padding: 6px 3px 6px 4px;
- 406. - }
- 407. - .video_row_icon_add .video_row_icon {
- 408. - width: 16px;
- 409. - background: url(/images/icons/audio_icons.png?2) -92px -51px no-repeat;
- 410. - }
- 411. - .video_row_added .video_row_icon_add .video_row_icon {
- 412. - background: url(/images/icons/audio_icons.png?2) -184px -51px no-repeat;
- 509. - color: #000000;
- 580. - margin: 0px 10px 15px 0px;
- 714. - }
- 715. - .video_album_text {
- 716. - overflow: hidden;
- 717. - text-overflow: ellipsis;
- 718. - width: 154px;
- 719. - height: 12px;
- 720. - }
- 721. - .video_is_private {
- 722. - display: inline-block;
- 723. - *display: block;
- 724. - zoom: 1;
- 725. - background: url(/images/icons/photo_icons.png?2) 0 -34px no-repeat;
- 726. - width: 10px;
- 727. - height: 12px;
- 728. - margin-left: 4px;
- 729. - margin-bottom: -2px;
- ------
- Файл - page.js:
- различия невозможно определить в SWF файлах.
- Файл - profile.js:
- 167. + newPhoto: function(params) {
- 168. + Profile.hideOther(-1);
- 169. + if (cur.viewAsBox) return cur.viewAsBox();
- 170. +
- 171. + showBox('/al_profile.php', extend(params || {}, {act: 'new_photo', flash: browser.flash}), {params: {
- 172. + bodyStyle: 'padding: 0px; position: relative;'
- 173. + }});
- 174. + },
- 180. - params: {bodyStyle: 'padding: 16px 7px'},
- 181. + params: {
- 182. + onHide: newph ? Profile.newPhoto : false,
- 183. + bodyStyle: 'padding: 16px 7px'
- 184. + },
- 687. - var audioId = (_a && _a.player && _a.player.paused && !_a.player.paused()) ? aid : '', top = (_a && (_a.playbackParams.top_audio || _a.playbackParams.top)) ? 1 : '';
- 688. - ajax.post('al_audio.php', {act: 'toggle_status', hash: hash, exp: exp, id: audioId, top: top}, {onDone: function(text) {
- 689. + var audioId = (_a && _a.player && _a.player.paused && !_a.player.paused()) ? aid : '';
- 690. + ajax.post('al_audio.php', {act: 'toggle_status', hash: hash, exp: exp, id: audioId}, {onDone: function(text) {
- ------
- Файл - walledit.js:
- 144. - var dcont = geByClass1('rel_date', acts);
- 145. - if (postponeDate && html && dcont) {
- 146. - dcont.innerHTML = html;
- 147. + if (postponeDate && html) {
- 148. + geByClass1('rel_date', acts).innerHTML = html;
- ------
Advertisement
Add Comment
Please, Sign In to add comment