Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix ie and bookmarklet #1234

Merged
merged 5 commits into from
Feb 3, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.dryice.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ var buildAce = function(options) {
if (options.shrinkwrap) {
console.log('# combining files into one ---------');
copy({
source: { root:targetDir, exclude:/^worker\-/ },
source: { root:targetDir, exclude:/(^|\\|\/)worker\-[^\\\/]*\.js$/ },
dest: BUILD_DIR + '/ace-min.js'
});
}
Expand Down
2 changes: 1 addition & 1 deletion build_support/editor_textarea.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h2>How to use it:</h2>
var ace = window.__ace_shadowed__;
var t = document.querySelector("textarea");
textAce = ace.transformTextarea(t, window.__ace_loader__);
textAce.setDisplaySettings(true);
setTimeout(function(){textAce.setDisplaySettings(true)});
});


Expand Down
2 changes: 2 additions & 0 deletions lib/ace/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
position: relative;
overflow: hidden;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
font-size: 12px;
line-height: normal;
}

.ace_scroller {
Expand Down
2 changes: 2 additions & 0 deletions lib/ace/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ var Editor = function(renderer, session) {
*
**/
this.setFontSize = function(size) {
if (typeof size == "number")
size = size + "px";
this.container.style.fontSize = size;
this.renderer.updateFontSize();
};
Expand Down
62 changes: 41 additions & 21 deletions lib/ace/ext/textarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ exports.transformTextarea = function(element, loader) {
left: "0px",
right: "0px",
bottom: "0px",
border: "1px solid gray"
border: "1px solid gray",
position: "absolute"
});
container.appendChild(editorDiv);

Expand All @@ -198,7 +199,7 @@ exports.transformTextarea = function(element, loader) {
var settingDiv = document.createElement("div");
var settingDivStyles = {
top: "0px",
left: "0px",
left: "20%",
right: "0px",
bottom: "0px",
position: "absolute",
Expand All @@ -207,7 +208,8 @@ exports.transformTextarea = function(element, loader) {
color: "white",
display: "none",
overflow: "auto",
fontSize: "14px"
fontSize: "14px",
boxShadow: "-5px 2px 3px gray"
};
if (!UA.isOldIE) {
settingDivStyles.backgroundColor = "rgba(0, 0, 0, 0.6)";
Expand All @@ -228,7 +230,7 @@ exports.transformTextarea = function(element, loader) {
editor.focus();

// Add the settingPanel opener to the editor's div.
editorDiv.appendChild(settingOpener);
container.appendChild(settingOpener);

// Create the API.
setupApi(editor, editorDiv, settingDiv, ace, options, loader);
Expand Down Expand Up @@ -280,13 +282,22 @@ function setupApi(editor, editorDiv, settingDiv, ace, options, loader) {
loader = loader || load;

function toBool(value) {
return value == "true";
return value === "true" || value == true;
}

editor.setDisplaySettings = function(display) {
if (display == null)
display = settingDiv.style.display == "none";
settingDiv.style.display = display ? "block" : "none";
if (display) {
settingDiv.style.display = "block";
settingDiv.hideButton.focus();
editor.on("focus", function onFocus() {
editor.removeListener("focus", onFocus);
settingDiv.style.display = "none"
});
} else {
editor.focus();
};
};

editor.setOption = function(key, value) {
Expand Down Expand Up @@ -393,10 +404,7 @@ function setupApi(editor, editorDiv, settingDiv, ace, options, loader) {
}

function setupSettingPanel(settingDiv, settingOpener, editor, options) {
var BOOL = {
"true": true,
"false": false
};
var BOOL = null;

var desc = {
mode: "Mode:",
Expand Down Expand Up @@ -484,6 +492,14 @@ function setupSettingPanel(settingDiv, settingOpener, editor, options) {
table.push("<table><tr><th>Setting</th><th>Value</th></tr>");

function renderOption(builder, option, obj, cValue) {
if (!obj) {
builder.push(
"<input type='checkbox' title='", option, "' ",
cValue == "true" ? "checked='true'" : "",
"'></input>"
);
return
}
builder.push("<select title='" + option + "'>");
for (var value in obj) {
builder.push("<option value='" + value + "' ");
Expand All @@ -508,18 +524,21 @@ function setupSettingPanel(settingDiv, settingOpener, editor, options) {
table.push("</table>");
settingDiv.innerHTML = table.join("");

var onChange = function(e) {
var select = e.currentTarget;
editor.setOption(select.title, select.value);
};
var onClick = function(e) {
var cb = e.currentTarget;
editor.setOption(cb.title, cb.checked);
};
var selects = settingDiv.getElementsByTagName("select");
for (var i = 0; i < selects.length; i++) {
var onChange = (function() {
var select = selects[i];
return function() {
var option = select.title;
var value = select.value;
editor.setOption(option, value);
};
})();
for (var i = 0; i < selects.length; i++)
selects[i].onchange = onChange;
}
var cbs = settingDiv.getElementsByTagName("input");
for (var i = 0; i < cbs.length; i++)
cbs[i].onclick = onClick;


var button = document.createElement("input");
button.type = "button";
Expand All @@ -528,6 +547,7 @@ function setupSettingPanel(settingDiv, settingOpener, editor, options) {
editor.setDisplaySettings(false);
});
settingDiv.appendChild(button);
settingDiv.hideButton = button;
}

// Default startup options.
Expand All @@ -540,7 +560,7 @@ exports.options = {
keybindings: "ace",
showPrintMargin: "false",
useSoftTabs: "true",
showInvisibles: "true"
showInvisibles: "false"
};

});
2 changes: 1 addition & 1 deletion lib/ace/keyboard/textinput.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var TextInput = function(parentNode, host) {
text.autocapitalize = "off";
text.spellcheck = false;

text.style.bottom = "-2em";
text.style.bottom = "2000em";
parentNode.insertBefore(text, parentNode.firstChild);

var PLACEHOLDER = "\x01\x01";
Expand Down
2 changes: 1 addition & 1 deletion lib/ace/mouse/default_gutter_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function GutterHandler(mouseHandler) {
return;
var gutterRegion = gutter.getRegion(e);

if (gutterRegion)
if (gutterRegion == "foldWidgets")
return;

var row = e.getDocumentPosition().row;
Expand Down
2 changes: 2 additions & 0 deletions lib/ace/mouse/fold_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ function FoldHandler(editor) {
});

editor.on("guttermousedown", function(e) {
if (!editor.isFocused())
return;
var gutterRegion = editor.renderer.$gutterLayer.getRegion(e);

if (gutterRegion == "foldWidgets") {
Expand Down