rem stringlengths 0 126k | add stringlengths 0 441k | context stringlengths 15 136k |
|---|---|---|
matches = array.nth(tabs.allTabs, function (t) t.linkedBrowser.lastURI.spec === buffer, 0); | matches = array.nth(tabs.allTabs, function (t) (t.linkedBrowser.lastURI || {}).spec === buffer, 0); | switchTo: function (buffer, allowNonUnique, count, reverse) { if (buffer != null) { // store this command, so it can be repeated with "B" this._lastBufferSwitchArgs = buffer; this._lastBufferSwitchSpecial = allowNonUnique; } else { buffer = this._last... |
command = "cd /D " + this._cwd.path + " && " + command + " > " + stdout.path + " 2>&1" + " < " + stdin.path; | command = "cd /D " + this.cwd + " && " + command + " > " + stdout.path + " 2>&1" + " < " + stdin.path; | system: function (command, input) { dactyl.echomsg("Calling shell to execute: " + command, 4); function escape(str) '"' + str.replace(/[\\"$]/g, "\\$&") + '"'; return this.withTempFiles(function (stdin, stdout, cmd) { if (input) stdin.write(input); // TODO: ... |
cmd.write("cd " + escape(this._cwd.path) + "\n" + | cmd.write("cd " + escape(this.cwd) + "\n" + | system: function (command, input) { dactyl.echomsg("Calling shell to execute: " + command, 4); function escape(str) '"' + str.replace(/[\\"$]/g, "\\$&") + '"'; return this.withTempFiles(function (stdin, stdout, cmd) { if (input) stdin.write(input); // TODO: ... |
if (dactyl.has("Win32")) { | if (dactyl.has("WINNT")) { | system: function (command, input) { dactyl.echomsg("Calling shell to execute: " + command, 4); function escape(str) '"' + str.replace(/[\\"$]/g, "\\$&") + '"'; return this.withTempFiles(function (stdin, stdout, cmd) { if (input) stdin.write(input); // TODO: ... |
this.refreshInstance = function(){ instancePanel.refresh(); } this.refreshImage = function(){ imagePanel.refresh(); | this.refreshPanel = function(panel){ eval(panel).refresh(); | WakameGUI.SystemAdminCard = function(){ var instancePanel = new WakameGUI.Instance(); var imagePanel = new WakameGUI.Image(); var clusterPanel = new WakameGUI.Cluster(); var servicePanel = new WakameGUI.Service(); imagePanel.setInstancePanel(instancePanel); this.setUpPanel = function(obj){ imagePanel.setU... |
function ChangePanel(no) { | var changePanel = function(no){ | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
ChangePanel(0); | changePanel(0); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
ChangePanel(1); | changePanel(1); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
ChangePanel(2); | changePanel(2); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
ChangePanel(3); | changePanel(3); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
if(WakameGUI.activePanel == 0){ cardPanel.refreshInstance(); } else if(WakameGUI.activePanel == 1){ cardPanel.refreshImage(); | switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; case 1: cardPanel.refreshPanel('imagePanel'); break; case 2: break; case 3: break; | WakameGUI.SystemAdminDownPanel = function(cardPanel){ function ChangePanel(no) { if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); if(WakameGUI.activePanel == 0){ cardPanel.refreshInstance(); } else if(WakameGUI.activ... |
var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; case 1: cardPanel.refreshPanel('imagePanel'); break; case 2: break; case 3: break; } } } | WakameGUI.SystemAdminDownPanel = function(cardPanel){ var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... | |
changePanel(0); | WakameGUI.changePanel(cardPanel,'instancePanel',0); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
changePanel(1); | WakameGUI.changePanel(cardPanel,'imagePanel',1); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
changePanel(2); | WakameGUI.changePanel(cardPanel,'clusterPanel',2); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
changePanel(3); | WakameGUI.changePanel(cardPanel,'servicePanel',3); | WakameGUI.SystemAdminDownPanel = function(cardPanel){ var changePanel = function(no){ if(WakameGUI.activePanel != no){ WakameGUI.activePanel = no; cardPanel.layout.setActiveItem(WakameGUI.activePanel); switch(no) { case 0: cardPanel.refreshPanel('instancePanel'); break; ... |
}).bind('keyup',function (e) { | }).bind('keypress',function (e) { | $.fn.tabby = function(options) { //debug(this); // build main options before element iteration var opts = $.extend({}, $.fn.tabby.defaults, options); var pressed = $.fn.tabby.pressed; // iterate and reformat each matched element return this.each(function() { $this = $(this); // build element specific o... |
if(isPopup){ notify(Config['post']['tag_provider']+'\n'+e.message.indent(4)); } else { alert(Config['post']['tag_provider']+'\n'+e.message.indent(4)); } | notify(Config['post']['tag_provider']+'\n'+e.message.indent(4)); | var Tags = function(ps, toggle){ this.container = [$('tags'), $('loading_icon'), $('suggestions')]; this.shown = true; toggle && this.toggle(); var self = this; this.candidates = []; this.delay = 130; this.score = 0,8 this.delimiter = ' '; this.autoComplete = false; this.popup = new Popup(this); this.suggest... |
let tags = util.Array.uniq(util.Array.flatten([b.tags for ([k, b] in Iterator(this._cache.bookmarks))])); | let tags = util.Array.uniq(util.Array.flatten([b.tags for ([k, b] in Iterator(bookmarks._cache.bookmarks))])); | function tags(context, args) { let filter = context.filter; let have = filter.split(","); args.completeFilter = have.pop(); let prefix = filter.substr(0, filter.length - args.completeFilter.length); let tags = util.Array.uniq(util.Array.flatten([b.tags for ... |
window.scrollBy(0, -window.innerHeight / 2); | window.scrollBy(0, -window.innerHeight * 4 / 5); | takeAction: function(seq) { if (this.seq == "L") { history.back(); } else if (this.seq == "R") { history.forward(); } else if (this.seq == "U") { window.scrollBy(0, -window.innerHeight / 2); } else if (this.seq == "D") { window.scrollBy(0, window.innerHeight / 2); } else if (this.se... |
window.scrollBy(0, window.innerHeight / 2); | window.scrollBy(0, window.innerHeight * 4 / 5); | takeAction: function(seq) { if (this.seq == "L") { history.back(); } else if (this.seq == "R") { history.forward(); } else if (this.seq == "U") { window.scrollBy(0, -window.innerHeight / 2); } else if (this.seq == "D") { window.scrollBy(0, window.innerHeight / 2); } else if (this.se... |
return false; | return true; | takeAction: function(seq) { if (this.seq == "L") { history.back(); } else if (this.seq == "R") { history.forward(); } else if (this.seq == "U") { window.scrollBy(0, -window.innerHeight / 2); } else if (this.seq == "D") { window.scrollBy(0, window.innerHeight / 2); } else if (this.se... |
let toolbar = findToolbar(args[0]); | let toolbar = findToolbar(args[0] || ""); | let tbcmd = function (names, desc, action, filter) { commands.add(names, desc, function (args) { let toolbar = findToolbar(args[0]); dactyl.assert(toolbar, "E474: Invalid argument"); action(toolbar); ... |
teardown: function(){ jQuery.event.remove( this, orig, withinElement ); } | event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:func... | teardown: function(){ jQuery.event.remove( this, orig, withinElement ); } |
$eq('foo'.replace(/f(x)?/, '\\1'), 'oo'); | function test_31() { $eq('xaba'.replace('a', 'c'), 'xcba'); $eq('xaba'.replace(/a/, 'c'), 'xcba'); $eq('xaba'.replace(/a/g, 'c'), 'xcbc'); $eq('xaba'.replace(/a/g, function(){return 33;}), 'x33b33'); $eq('xdabda'.replace(/d(a)/g, function(full) {return full + 1;}), 'xda1bda1'); $eq('xdabda'.replace(/d(a)/g, funct... | |
a: for(;;) {for(;;) break a;} b: for(i = 0; i< 10 ; i = i + 1) {for(;;) continue b;} | a: for (;;) {for (;;) break a;} b: for (var i = 0; i < 10 ; i = i + 1) {for (;;) continue b;} | function test_9() { a: for(;;) {for(;;) break a;} b: for(i = 0; i< 10 ; i = i + 1) {for(;;) continue b;}} |
'-c', '/dev/null' ]; | '-c', dev_null ]; | exports.test_cat = function() { var args = [ require('flusspferd').executableName, '-e', 'var line, sys = require("system"); while( (line = sys.stdin.readLine()) ) { sys.stdout.write(line); sys.stdout.flush(); }', '-c', '/dev/null' ]; var p = subprocess.popen(args); asserts.ok(p... |
const data = 'hello world\nline 2\n'; | const data = lines('hello world', 'line 2'); | exports.test_cat = function() { var args = [ require('flusspferd').executableName, '-e', 'var line, sys = require("system"); while( (line = sys.stdin.readLine()) ) { sys.stdout.write(line); sys.stdout.flush(); }', '-c', '/dev/null' ]; var p = subprocess.popen(args); asserts.ok(p... |
'-c', '/dev/null' | '-c', dev_null | exports.test_communicate = function() { var args = [ require('flusspferd').executableName, '-e', 'const out = require("system").stdout; out.write("hello world\\n"); out.flush();', '-c', '/dev/null' ]; var p = subprocess.popen(args, "r"); asserts.same(p.stdin, undef... |
asserts.same(r.stdout, "hello world\n", "stdout correct"); | asserts.same(r.stdout, lines("hello world"), "stdout correct"); | exports.test_communicate = function() { var args = [ require('flusspferd').executableName, '-e', 'const out = require("system").stdout; out.write("hello world\\n"); out.flush();', '-c', '/dev/null' ]; var p = subprocess.popen(args, "r"); asserts.same(p.stdin, undef... |
asserts.same(String(doc), '<?xml version="1.0"?>\n<html xmlns="http: | asserts.same(String(doc), '<?xml version="1.0"?>\n<html><body>\n<p>foo <b>baz <i>quxx</i></b><i> flibble</i>\n</p><p>\n</p></body></html>', "XML output as expected"); | exports.test_HTML = function() { var doc = xml.HTMLParser.parse("test/fixtures/xml/sample.html"); asserts.instanceOf(doc, xml.Document, "parse returned a Document"); asserts.instanceOf(doc, xml.Node, "Document isa Node"); asserts.same(String(doc), '<?xml version="1.0"?>\n<html xmlns="http://www.w3.org/1999/xhtml"><... |
want = '<?xml version="1.0"?>\n<html xmlns="http: | want = '<?xml version="1.0"?>\n<html><body>\n<p>foo <b>baz <i>quxx</i></b><i> flibble</i>\n</p><p/></body></html>'; | exports.test_parseHTMLString = function() { var str = "<html>\n<body>\n<p>foo <b>baz <i>quxx</b> flibble</i>\n<p>", want = '<?xml version="1.0"?>\n<html xmlns="http://www.w3.org/1999/xhtml"><body>\n<p>foo <b>baz <i>quxx</i></b><i> flibble</i>\n</p><p/></body></html>'; var doc = xml.HTMLParser.parseString(str); ... |
'-c', '/dev/null' | '-c', dev_null | exports.test_retcode = function() { const retval = 12; const args = [ require('flusspferd').executableName, '-e', 'quit(' + retval + ');', '-c', '/dev/null' ]; var p = subprocess.popen({ args : args, stdin : false, stderr : false, stdout : false }); assert... |
' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c ' + dev_null; | ' -e "const out = require(\'system\').stdout; out.write(\'' + data + '\'); out.flush()" -c ' + dev_null; | exports.test_shell = function() { const data = "hello world"; const cmd = require('flusspferd').executableName + ' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c ' + dev_null; // Had some issues where spawning multiple process and calling communicate //would fail t... |
asserts.same(r.stderr, "", "stderr ok"); | exports.test_shell = function() { const data = "hello world"; const cmd = require('flusspferd').executableName + ' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c ' + dev_null; // Had some issues where spawning multiple process and calling communicate //would fail t... | |
' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c /dev/null'; | ' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c ' + dev_null; | exports.test_shell = function() { const data = "hello world"; const cmd = require('flusspferd').executableName + ' -e \'const out = require("system").stdout; out.write("' + data + '"); out.flush()\' -c /dev/null'; // Had some issues where spawning multiple process and calling communicate //would fail the... |
ctx.edit(["s", "h", "u", "a", "n", "g", "z", "i", "e", "\'", "g", "u", "n", "-"]); | ctx.edit("shuangziegun-errouzhongdaigang".split("")); | function testQuery(t) { Logger.info("testQuery:"); var ctx = t.engine.ctx; ctx.edit(["s", "h", "u", "a", "n", "g", "z", "i", "e", "\'", "g", "u", "n", "-"]); ctx.convert(); Logger.log("phrase: "); var a = ctx.phrase; for (var i = 0; i < a.length; ++i) { if (a[i]) { var b = a[i]; ... |
var a = ctx.phrase; | function testQuery(t) { Logger.info("testQuery:"); var ctx = t.engine.ctx; ctx.edit(["s", "h", "u", "a", "n", "g", "z", "i", "e", "\'", "g", "u", "n", "-"]); ctx.convert(); Logger.log("phrase: "); var a = ctx.phrase; for (var i = 0; i < a.length; ++i) { if (a[i]) { var b = a[i]; ... | |
context.keys.text = function (f) f.path.substr(dir.length); | context.keys.text = function (f) this.path.substr(dir.length); | context.keys.text = function (f) f.path.substr(dir.length); |
if (value === undefined) return jQuery.fn.text.apply(this, arguments); | if (value === undefined) { if (this.length < 1) return undefined; return jQuery.Buffer.bufferForElement(this[i]).text(); } | text: function(value) { if (value === undefined) return jQuery.fn.text.apply(this, arguments); // there is a vlaue. We are going to do it like jquery, but different. // in this, we inline "buffers" above var len = this.length, i; for (i = 0; i < len; i++) { var buffer = jQuery.Buffer.bufferFor... |
textarea: function(element, value) { if (Object.isUndefined(value)) return element.value; else element.value = value; }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | textarea: function(element, value) { if (Object.isUndefined(value)) return element.value; else element.value = value; }, |
these: function() { var returnValue; for (var i = 0, length = arguments.length; i < length; i++) { var lambda = arguments[i]; try { returnValue = lambda(); break; } catch (e) { } } return returnValue; } | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | these: function() { var returnValue; for (var i = 0, length = arguments.length; i < length; i++) { var lambda = arguments[i]; try { returnValue = lambda(); break; } catch (e) { } } return returnValue; } |
a.diag = " Got: " + e.toString() + "\n" | a.diag = " Got: " + e.toString() + "\n" + | throwsOk: function( testcase, expected, message ) { if ( message == undefined ) { message = expected; expected = undefined; } var suite = exports.__currentSuite__; var a = { type: "throwsOk", ok: 0, message: message, defaultMsg: "throws error ok", }; try { testcase... |
c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},stop:f... | e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);t... | c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},stop:f... |
logDebug('Condition not met, trying again later'); | if ((new Date()).getTime() - start > maxTime) { var msg = 'Error: wait(' + repr(condition) + ') has timed out'; writeln(msg); logDebug(msg); logDebug('Timeout after ' + ((new Date()).getTime() - start) + ' milliseconds'); finishThisRun(); return; } | var timeoutFunc = function () { if (condition === null || condition()) { finishThisRun(); } else { // Condition not met, try again soon... logDebug('Condition not met, trying again later'); setTimeout(timeoutFunc, time); } }; |
this.Data.noreload = false; | this.timeRange_Change = function(el) { this.Data.timeRange = $(el).val(); this.Data.from = 0; this.Data.till = 0; $('.tablePlus').attr('src', 'media/images/table_plus.png'); //this.Data.or = []; this.setupURL(); }; | |
times: function(iterator, context) { $R(0, this, true).each(iterator, context); return this; }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | times: function(iterator, context) { $R(0, this, true).each(iterator, context); return this; }, |
textTitle.appendChild($T(ps.item)); inputTitle.setAttribute('value', ps.item); | textTitle.appendChild($T(ps.item || "")); inputTitle.setAttribute('value', ps.item || ""); | var Title = function(ps, toggle){ this.nativeToggle = toggle; this.container = $('title'); toggle && this.container.setAttribute('style', 'display:none !important;'); var textTitle = this.textTitle = $('title_text'); var inputTitle = this.inputTitle = $('title_input'); this.shownInput = false; this.shown = true;... |
"uVowel","lVowel","anusvara","uVowel","lVowel","aVowel","lDot","asat","lDot","visarga","lDot"); | "uVowel","lDot","lVowel","anusvara","uVowel","lVowel","aVowel","lDot","asat","lDot","visarga","lDot"); | function TlsMyanmarConverter(data){ if (typeof TlsDebug != "undefined") { this.debug = new TlsDebug(); } else { this.debug = new Object(); this.debug.print = function(text) {}; } this.data = data; this.sourceEncoding = this.data.fonts[0]; // null is used as a place holder... |
"uVowel","lDot","lVowel","anusvara","uVowel","lVowel","aVowel","stack","lDot","asat","lDot","visarga","lDot"); | "uVowel","lDot","lVowel","anusvara","uVowel","lVowel","aVowel","stack", "lDot","visarga","asat","lDot","visarga","lDot"); | function TlsMyanmarConverter(data){ if (typeof TlsDebug != "undefined") { this.debug = new TlsDebug(); } else { this.debug = new Object(); this.debug.print = function(text) {}; } this.data = data; this.useZwsp = false; this.sourceEncoding = this.data.fonts[0]; // null ... |
this.kinzi = "((င|ရ|ၚ)်\u1039)?"; | this.kinzi = "((င|ရ|ၚ)်္)?"; | function TlsMyanmarUtn11(){ this.kinzi = "((င|ရ|ၚ)်\u1039)?";//1 this.cons = "(က|ခ|ဂ|ဃ|င|စ|ဆ|ဇ|ဈ|ဉ|ည|ဋ|ဌ|ဍ|ဎ|ဏ|တ|ထ|ဒ|ဓ|န|ပ|ဖ|ဗ|ဘ|မ|ယ|ရ|လ|ဝ|သ|ဟ|ဠ|အ|ဣ|ဤ|ဥ|ဦ|ဧ|ဩ|ဪ|ဿ|၀|၁|၂|၃|၄|၅|၆|၇|၈|၉|၌|၍|၎|၏|ၐ|ၑ|ၒ|ၓ|ၔ|ၕ|ၚ|ၛ|ၜ|ၝ|ၡ|ၥ|ၦ|ၮ|ၯ|ၰ|ၵ|ၶ|ၷ|ၸ|ၹ|ၺ|ၻ|ၼ|ၽ|ၾ|ၿ|ႀ|ႁ|ႎ|႐|႑|႒|႓|႔|႕|႖|႗|႘|႙|႟|ꩠ|ꩡ|ꩢ|ꩣ|ꩤ|ꩥ|ꩦ|ꩧ|ꩨ|ꩩ|ꩪ|ꩫ|ꩬ|ꩭ|ꩮ|ꩯ|ꩱ|ꩲ|ꩳ|ꩴ|ꩵ... |
this.stack = "(\u1039(က|ခ|ဂ|ဃ|င|စ|ဆ|ဇ|ဈ|ဉ|ည|ဋ|ဌ|ဍ|ဎ|ဏ|တ|ထ|ဒ|ဓ|န|ပ|ဖ|ဗ|ဘ|မ|ယ|ရ|လ|ဝ|သ|ဟ|ဠ|အ|ၚ|ၛ|ၜ|ၝ)){0,2}"; this.asat = "(\u103A)?"; | this.stack = "(္(က|ခ|ဂ|ဃ|င|စ|ဆ|ဇ|ဈ|ဉ|ည|ဋ|ဌ|ဍ|ဎ|ဏ|တ|ထ|ဒ|ဓ|န|ပ|ဖ|ဗ|ဘ|မ|ယ|ရ|လ|ဝ|သ|ဟ|ဠ|အ|ၚ|ၛ|ၜ|ၝ)){0,2}"; this.asat = "(်)?"; | function TlsMyanmarUtn11(){ this.kinzi = "((င|ရ|ၚ)်\u1039)?";//1 this.cons = "(က|ခ|ဂ|ဃ|င|စ|ဆ|ဇ|ဈ|ဉ|ည|ဋ|ဌ|ဍ|ဎ|ဏ|တ|ထ|ဒ|ဓ|န|ပ|ဖ|ဗ|ဘ|မ|ယ|ရ|လ|ဝ|သ|ဟ|ဠ|အ|ဣ|ဤ|ဥ|ဦ|ဧ|ဩ|ဪ|ဿ|၀|၁|၂|၃|၄|၅|၆|၇|၈|၉|၌|၍|၎|၏|ၐ|ၑ|ၒ|ၓ|ၔ|ၕ|ၚ|ၛ|ၜ|ၝ|ၡ|ၥ|ၦ|ၮ|ၯ|ၰ|ၵ|ၶ|ၷ|ၸ|ၹ|ၺ|ၻ|ၼ|ၽ|ၾ|ၿ|ႀ|ႁ|ႎ|႐|႑|႒|႓|႔|႕|႖|႗|႘|႙|႟|ꩠ|ꩡ|ꩢ|ꩣ|ꩤ|ꩥ|ꩦ|ꩧ|ꩨ|ꩩ|ꩪ|ꩫ|ꩬ|ꩭ|ꩮ|ꩯ|ꩱ|ꩲ|ꩳ|ꩴ|ꩵ... |
this.eVowel = "(\u1031\u1031|\u1084\u1031|\u1031|\u1084)?"; | this.eVowel = "(ေေ|ႄေ|ေ|ႄ)?"; | function TlsMyanmarUtn11(){ this.kinzi = "((င|ရ|ၚ)်\u1039)?";//1 this.cons = "(က|ခ|ဂ|ဃ|င|စ|ဆ|ဇ|ဈ|ဉ|ည|ဋ|ဌ|ဍ|ဎ|ဏ|တ|ထ|ဒ|ဓ|န|ပ|ဖ|ဗ|ဘ|မ|ယ|ရ|လ|ဝ|သ|ဟ|ဠ|အ|ဣ|ဤ|ဥ|ဦ|ဧ|ဩ|ဪ|ဿ|၀|၁|၂|၃|၄|၅|၆|၇|၈|၉|၌|၍|၎|၏|ၐ|ၑ|ၒ|ၓ|ၔ|ၕ|ၚ|ၛ|ၜ|ၝ|ၡ|ၥ|ၦ|ၮ|ၯ|ၰ|ၵ|ၶ|ၷ|ၸ|ၹ|ၺ|ၻ|ၼ|ၽ|ၾ|ၿ|ႀ|ႁ|ႎ|႐|႑|႒|႓|႔|႕|႖|႗|႘|႙|႟|ꩠ|ꩡ|ꩢ|ꩣ|ꩤ|ꩥ|ꩦ|ꩧ|ꩨ|ꩩ|ꩪ|ꩫ|ꩬ|ꩭ|ꩮ|ꩯ|ꩱ|ꩲ|ꩳ|ꩴ|ꩵ... |
return value.toCoreSeto(); | if(value) return value.toCoreSet(); else return SC.CoreSet.create(); | to: function(value, attr, type, record, key) { return value.toCoreSeto(); }, |
if(value) return value.toSet(); else return SC.Set.create(); | return SC.Set.create(value); | to: function(value, attr, type, record, key) { if(value) return value.toSet(); else return SC.Set.create(); }, |
toArray: function() { return this.map(); }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | toArray: function() { return this.map(); }, |
na[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a!=null)return this.animate(L("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],"olddisplay"... | "olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");... | na[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a!=null)return this.animate(L("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],"olddisplay"... |
toggle: function(element) { element = $(element); Element[Element.visible(element) ? 'hide' : 'show'](element); return element; }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | toggle: function(element) { element = $(element); Element[Element.visible(element) ? 'hide' : 'show'](element); return element; }, |
var className = mapClasses(target.name); | var className = mapClasses(target.id); | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[failure]': | case 'SET_failure': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[error]': | case 'SET_error': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[success]': | case 'SET_success': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[skipped]': | case 'SET_skipped': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[notimplemented]': | case 'SET_notimplemented': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[testdox]': | case 'SET_testdox': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
case 'SET[showMemoryAndTime]': | case 'SET_showMemoryAndTime': | var toggle = function (event) { var target = Event.getTarget(event); var display = target.checked ? 'block' : 'none'; var className = mapClasses(target.name); var state = target.checked; var checkbox; switch (target.id) { case 'SET[failure]': checkbox = 'failure'; break; case 'SET[error]': checkbox = 'er... |
" "+b[j]}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(p){var n=c(this);n.removeClass(a.call(this,p,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(fa),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(va... | " ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(... | " "+b[j]}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(p){var n=c(this);n.removeClass(a.call(this,p,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(fa),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(va... |
toggleClassName: function(element, className) { if (!(element = $(element))) return; return element[element.hasClassName(className) ? 'removeClassName' : 'addClassName'](className); }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | toggleClassName: function(element, className) { if (!(element = $(element))) return; return element[element.hasClassName(className) ? 'removeClassName' : 'addClassName'](className); }, |
Date.prototype.toJSON = function() { return '"' + this.getUTCFullYear() + '-' + (this.getUTCMonth() + 1).toPaddedString(2) + '-' + this.getUTCDate().toPaddedString(2) + 'T' + this.getUTCHours().toPaddedString(2) + ':' + this.getUTCMinutes().toPaddedString(2) + ':' + this.getUTCSeconds().toPaddedString(2) + 'Z"'; }; | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | Date.prototype.toJSON = function() { return '"' + this.getUTCFullYear() + '-' + (this.getUTCMonth() + 1).toPaddedString(2) + '-' + this.getUTCDate().toPaddedString(2) + 'T' + this.getUTCHours().toPaddedString(2) + ':' + this.getUTCMinutes().toPaddedString(2) + ':' + this.getUTCSeconds().toPaddedString(2... |
let toolbox = document.getElementById("navigator-toolbox"); | completion.toolbar = function toolbar(context) { context.title = ["Toolbar"]; context.keys = { text: function (item) item.getAttribute("toolbarname"), description: function () "" }; context.completions = util.evaluateXPath("./*[@toolbarname]", document, toolbox); }; | |
top: function(element, node) { element.insertBefore(node, element.firstChild); }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | top: function(element, node) { element.insertBefore(node, element.firstChild); }, |
Top: function(element, content) { return Element.insert(element, {top:content}); }, | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | Top: function(element, content) { return Element.insert(element, {top:content}); }, |
toQueryParams: function(separator) { var match = this.strip().match(/([^?#]*)(#.*)?$/); if (!match) return { }; return match[1].split(separator || '&').inject({ }, function(hash, pair) { if ((pair = pair.split('='))[0]) { var key = decodeURIComponent(pair.shift()); var value = pair.length > 1 ? pair.join('=') : pair[0... | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | toQueryParams: function(separator) { var match = this.strip().match(/([^?#]*)(#.*)?$/); if (!match) return { }; return match[1].split(separator || '&').inject({ }, function(hash, pair) { if ((pair = pair.split('='))[0]) { var key = decodeURIComponent(pair.shift()); var value = pair.length ... |
for(var i = 0, roma, kana, table = this.katakana ; i < s.length ; i += kana.length){ | for(var i = 0, roma, kana, table = this.katakana, len = s.length; i < len; i += kana.length){ | toSparseRomaReadings: function(s){ var res = []; for(var i = 0, roma, kana, table = this.katakana ; i < s.length ; i += kana.length){ kana = s.substring(i, i+2); roma = table[kana]; if(!roma){ kana = s.substring(i, i+1); roma = table[kana] || kana; } if(kana in this.length... |
self.func.toString = function () { return "Spy('" + self._name + "').func"; }; | doctest.Abort.prototype.toString = function () { return this.message; }; | self.func.toString = function () { return "Spy('" + self._name + "').func"; }; |
return window.opera?Number(window.opera.version())>=9.52:/Apple Computers, Inc/.test(navigator.vendor)&&(e=navigator.userAgent.match(/Version\/(\d+(?:\.\d+)?)\./))?Number(e[1])>=3:document.selection&&window.ActiveXObject&&(e=navigator.userAgent.match(/MSIE (\d+(?:\.\d*)?)\b/))?Number(e[1])>=6:(e=navigator.userAgent.mat... | d}else if(d)j=p*d;if(j)b.wrapping.style.height=Math.max(m+j,b.options.minHeight)+"px"}var b=this,c=b.options.cursorActivity,e=b.win,g=e.document.body,d=null,f=null,m=2*b.frame.offsetTop;g.style.overflowY="hidden";e.document.documentElement.style.overflowY="hidden";this.frame.scrolling="no";setTimeout(a,300);b.options.c... | return window.opera?Number(window.opera.version())>=9.52:/Apple Computers, Inc/.test(navigator.vendor)&&(e=navigator.userAgent.match(/Version\/(\d+(?:\.\d+)?)\./))?Number(e[1])>=3:document.selection&&window.ActiveXObject&&(e=navigator.userAgent.match(/MSIE (\d+(?:\.\d*)?)\b/))?Number(e[1])>=6:(e=navigator.userAgent.mat... |
toString: function() { return $A(this).join(' '); } | var Prototype={Version:"1.6.1",Browser:(function(){var b=navigator.userAgent;var a=Object.prototype.toString.call(window.opera)=="[object Opera]";return{IE:!!window.attachEvent&&!a,Opera:a,WebKit:b.indexOf("AppleWebKit/")>-1,Gecko:b.indexOf("Gecko")>-1&&b.indexOf("KHTML")===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(... | toString: function() { return $A(this).join(' '); } |
return "Spy('" + self.name + "').func"; | return "Spy('" + self._name + "').func"; | self.func.toString = function () { return "Spy('" + self.name + "').func"; }; |
if(children = transform.observesChildren) { | if(!SC.none(value) && (children = transform.observesChildren)) { | toType: function(record, key, value) { var transform = this.get('transform'), type = this.get('typeClass'), children; if (transform && transform.to) { value = transform.to(value, this, type, record, key) ; // if the transform needs to do something when its children change,... |
transform: transform, | toType: function(record, key, value) { var transform = this.get('transform'), type = this.get('typeClass'), children; if (transform && transform.to) { value = transform.to(value, this, type, record, key) ; // if the transform needs to do something when its children change,... | |
if (this.touchIsInBoundary(touch)) this._action(); | if (this.touchIsInBoundary(touch) && this.get('isEnabled')) { this._action(); } | touchEnd: function(touch){ this._touch_exited = NO; this.set('isActive', NO); // track independently in case isEnabled has changed if (this.get('buttonBehavior') !== SC.HOLD_BEHAVIOR) { if (this.touchIsInBoundary(touch)) this._action(); } touch.preventDefault(); return YES ; }, |
deltaY = touch.pageY - touch.startY; | deltaY = touch.pageY - touch.startY, absX = Math.abs(deltaX), absY = Math.abs(deltaY); | touchIsInGesture: function(touch, status) { // if we have not "flunked" the touch before, and it has moved if (!status.flunked) { var d = this.get('direction'), cd = this.get('currentDirection'), startDistance = this.get('startDistance'), deltaX = touch.pageX - touch.startX, ... |
if (deltaX > deltaY) cd = SC.SWIPE_HORIZONTAL; else if (deltaY > deltaX) cd = SC.SWIPE_VERTICAL; | if (absX > absY) cd = SC.SWIPE_HORIZONTAL; else if (absY > absX) cd = SC.SWIPE_VERTICAL; | touchIsInGesture: function(touch, status) { // if we have not "flunked" the touch before, and it has moved if (!status.flunked) { var d = this.get('direction'), cd = this.get('currentDirection'), startDistance = this.get('startDistance'), deltaX = touch.pageX - touch.startX, ... |
if (idx>=0) { | if (idx === this.overflowIndex) { this.showOverflowItems(); } else if (idx>=0) { | touchStart: function(touch) { if (!this.get('isEnabled')) return YES; // nothing to do var idx = this.displayItemIndexForEvent(touch); // if mouse was pressed on a button, then start detecting pressed events if (idx>=0) { this._isTouching = YES ; this.set('activeIndex', idx); } ret... |
touchStart: function(ev) { | touchStart: function(touch, evt) { | touchStart: function(ev) { // When the user presses the mouse down, we don't do much just yet. // Instead, we just need to save a bunch of state about the mouse down // so we can choose the right thing to do later. // Toggle selection only triggers on mouse up. Do nothing. if (this.get('useToggleSelec... |
var itemView = this.itemViewForEvent(ev), | var itemView = this.itemViewForEvent(touch), | touchStart: function(ev) { // When the user presses the mouse down, we don't do much just yet. // Instead, we just need to save a bunch of state about the mouse down // so we can choose the right thing to do later. // Toggle selection only triggers on mouse up. Do nothing. if (this.get('useToggleSelec... |
prefix+= (reqs[i]!="dojo" && reqs[i]!="dijit" && reqs[i].substring(0, 5)!="i18n!") ? "dojo.require(\"" + fileUtil.asyncRequireArgs[i] + "\");" + lineSeparator : ""; | if (reqs[i].substring(0, 5)=="i18n!") { bundleMatch= reqs[i].match(/i18n\!(.+)\.nls\.(\w+)/); prefix+= "dojo.requireLocalization(\"" + bundleMatch[1].replace(/\ } else if (reqs[i]!="dojo" && reqs[i]!="dijit") { prefix+= "dojo.require(\"" + fileUtil.asyncRequireArgs[i] + "\");" + lineSeparator; } | fileUtil.transformAsyncModule= function(contents) { var match, lineSeparator = fileUtil.getLineSeparator(); if (contents.substring(0, 8)=="define(\"") { if (contents.substring(8, 13)=="i18n!") { return contents.substring(contents.indexOf("//begin v1.x content")+21, contents.indexOf("//end v1.x content")... |
if (contents.substring(0, 13)=="define(\"") { if (contents.substring(13, 18)=="i18n!") { | if (contents.substring(0, 8)=="define(\"") { if (contents.substring(8, 13)=="i18n!") { | fileUtil.transformAsyncModule= function(contents) { var match, lineSeparator = fileUtil.getLineSeparator(); if (contents.substring(0, 13)=="define(\"") { if (contents.substring(13, 18)=="i18n!") { return contents.substring(contents.indexOf("//begin v1.x content")+21, contents.indexOf("//end v1.x content... |
} else if ((match= contents.match(/^require\.def\((.+)\,\s+function.+$/m))) { | } else if ((match= contents.match(/^define\((.+)\,\s+function.+$/m))) { | fileUtil.transformAsyncModule= function(contents) { var match, lineSeparator = fileUtil.getLineSeparator(); if (contents.substring(0, 13)=="define(\"") { if (contents.substring(13, 18)=="i18n!") { return contents.substring(contents.indexOf("//begin v1.x content")+21, contents.indexOf("//end v1.x content... |
if (contentsLength==-1) { contentsLength= contents.search(/\}\);\s*$/); } | fileUtil.transformAsyncModule= function(contents) { var match, lineSeparator = fileUtil.getLineSeparator(); if (contents.substring(0, 13)=="define(\"") { if (contents.substring(13, 18)=="i18n!") { return contents.substring(contents.indexOf("//begin v1.x content")+21, contents.indexOf("//end v1.x content... | |
if (reqs[i].substring(0, 5)=="i18n!") { | if (reqs[i].substring(0, 5)=="text!") { } else if (reqs[i].substring(0, 5)=="i18n!") { | fileUtil.transformAsyncModule= function(filename, contents) { var match, bundleMatch, moduleId, requireArgs= [], lineSeparator = fileUtil.getLineSeparator(), dojo = {isBrowser:true}, getAsyncArgs= function(moduleId_, deps) { if (!deps) { //no moduleId given deps= moduleId_; ... |
layout = this.get('layout'), | layout = this.getPath('view.layout'), | transitionDidEnd: function(evt){ // WARNING: Sometimes this will get called more than once for a property. Not sure why. var propertyName = evt.originalEvent.propertyName, layout = this.get('layout'), animation, idx; animation = this._activeAnimations ? this._activeAnimations[propertyName] : nu... |
this.invokeLater('_scv_runAnimationCallback', 1, animation.callback, evt, this._animatedTransforms[idx], NO); | this.invokeLater('runAnimationCallback', 1, animation.callback, evt, this._animatedTransforms[idx], NO); | transitionDidEnd: function(evt){ // WARNING: Sometimes this will get called more than once for a property. Not sure why. var propertyName = evt.originalEvent.propertyName, layout = this.get('layout'), animation, idx; animation = this._activeAnimations ? this._activeAnimations[propertyName] : nu... |
this.invokeLater('_scv_runAnimationCallback', 1, animation.callback, evt, propertyName, NO); | this.invokeLater('runAnimationCallback', 1, animation.callback, evt, propertyName, NO); | transitionDidEnd: function(evt){ // WARNING: Sometimes this will get called more than once for a property. Not sure why. var propertyName = evt.originalEvent.propertyName, layout = this.get('layout'), animation, idx; animation = this._activeAnimations ? this._activeAnimations[propertyName] : nu... |
this._scv_removeAnimationFromLayout(propertyName, YES); | this.removeAnimationFromLayout(propertyName, YES); | transitionDidEnd: function(evt){ // WARNING: Sometimes this will get called more than once for a property. Not sure why. var propertyName = evt.originalEvent.propertyName, layout = this.get('layout'), animation, idx; animation = this._activeAnimations ? this._activeAnimations[propertyName] : nu... |
dactyl.echomsg("Executing " + event + " Auto commands for \"*\"", 8); | dactyl.echomsg('Executing ' + event + ' Auto commands for "*"', 8); | trigger: function (event, args) { if (options.get("eventignore").has("all", event)) return; let autoCmds = this._store.filter(function (autoCmd) autoCmd.event == event); dactyl.echomsg("Executing " + event + " Auto commands for \"*\"", 8); let lastPattern = null; let ur... |
dactyl.echomsg("Executing " + event + " Auto commands for \"" + autoCmd.pattern.source + "\"", 8); | dactyl.echomsg("Executing " + event + " Auto commands for " + autoCmd.pattern.source.quote(), 8); | trigger: function (event, args) { if (options.get("eventignore").has("all", event)) return; let autoCmds = this._store.filter(function (autoCmd) autoCmd.event == event); dactyl.echomsg("Executing " + event + " Auto commands for \"*\"", 8); let lastPattern = null; let ur... |
i,c.data(a,"handle"));e=null;delete f[i]}}}}for(e in f)break;if(!e){if(B=c.data(a,"handle"))B.elem=null;c.removeData(a,"events");c.removeData(a,"handle")}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[H]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=e=e.slice(0,-1);a.exc... | null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.ha... | i,c.data(a,"handle"));e=null;delete f[i]}}}}for(e in f)break;if(!e){if(B=c.data(a,"handle"))B.elem=null;c.removeData(a,"events");c.removeData(a,"handle")}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[H]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=e=e.slice(0,-1);a.exc... |
triggerCallback: function (type, mode, data) { | triggerCallback: function (type, mode) { | triggerCallback: function (type, mode, data) { if (this._callbacks[type] && this._callbacks[type][mode]) this._callbacks[type][mode].call(this, data); }, |
this._callbacks[type][mode].call(this, data); | this._callbacks[type][mode].apply(this, Array.slice(arguments, 2)); | triggerCallback: function (type, mode, data) { if (this._callbacks[type] && this._callbacks[type][mode]) this._callbacks[type][mode].call(this, data); }, |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.