some more IE fixes

This commit is contained in:
Fabian Jakobs 2011-02-12 15:03:17 +01:00
commit 428dbeb11d
3 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,6 @@
define(function(require, exports, module) {
require("pilot/fixoldbrowsers");
var async = require("asyncjs");
var dom = require("pilot/dom");

View file

@ -75,7 +75,7 @@ var Tokenizer = function(rules) {
var value = match[0];
for ( var i = 0; i < state.length; i++) {
if (match[i + 1] !== undefined) {
if (match[i + 1]) {
if (typeof state[i].token == "function") {
type = state[i].token(match[0]);
}
@ -109,10 +109,10 @@ var Tokenizer = function(rules) {
}
if (lastIndex == line.length) {
break;
}
break;
}
lastIndex = re.lastIndex;
lastIndex = re.lastIndex;
};
if (token.type) {

@ -1 +1 @@
Subproject commit 0727a1470a97de91e8e97c21334d5692382fb9ea
Subproject commit 5d642573259ba8a77456d3fa066beb2f1b2be23a