This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit de509d0360d0cf2e6da4bb20bb6a9eb574bae9a5 | |
Author: frega <fl@flink-solutions.de> | |
Date: Fri Sep 27 10:55:58 2013 +0200 | |
Zwischenstand | |
diff --git a/core/misc/dialog.ajax.js b/core/misc/dialog.ajax.js | |
index c56515b..24aabd0 100644 | |
--- a/core/misc/dialog.ajax.js | |
+++ b/core/misc/dialog.ajax.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file | |
* VIE DOM parsing service for Edit. | |
*/ | |
(function(jQuery, _, Drupal, VIE) { | |
"use strict"; | |
VIE.prototype.EditService = function (options) { | |
var defaults = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Faye = require('./faye-node') | |
,sys = require('sys') | |
,server = new Faye.NodeAdapter({mount: '/'}); | |
server.run(8000); | |
var client = new Faye.Client('http://localhost:8000/'); | |
// toggle timeout-wrapping | |
var useSetTimeout = process.ARGV[2]; |