My favorites | Sign in
Project Home Downloads Wiki Issues Source
Details: Show all Hide all

Older

  • Apr 08, 2011
    issue 7 (:nth-child not working) reported by orte...@gmail.com   -   div#id > div:nth-child(2) doesnt return anything. in general nth-child() doesnt return anything at all in my tests.
    div#id > div:nth-child(2) doesnt return anything. in general nth-child() doesnt return anything at all in my tests.
  • Feb 27, 2011
    issue 6 (Wrong regexp) reported by mainameiz   -   yass 0.3.9 Если в сделать $('#item-list') селектор не пройдет проверку /^[\w[:#.][\w\]*^|=!]*$/ и yass будет искать элемент другими средствами, а не getElementById (как ожидается) Вроде решается добавлением '-' в регэксп, т.е. так /^[\w[:#.][\w-\]*^|=!]*$/
    yass 0.3.9 Если в сделать $('#item-list') селектор не пройдет проверку /^[\w[:#.][\w\]*^|=!]*$/ и yass будет искать элемент другими средствами, а не getElementById (как ожидается) Вроде решается добавлением '-' в регэксп, т.е. так /^[\w[:#.][\w-\]*^|=!]*$/
  • Feb 27, 2011
    issue 6 (Wrong regexp) reported by mainameiz   -   yass 0.3.9 Если в сделать $('#item-list') селектор не пройдет проверку /^[\w[:#.][\w\]*^|=!]*$/ и yass будет искать элемент другими средствами, а не getElementById (как ожидается) Вроде решается добавлением '-' в регэксп, т.е. так /^[\w[:#.][\w-\]*^|=!]*$/
    yass 0.3.9 Если в сделать $('#item-list') селектор не пройдет проверку /^[\w[:#.][\w\]*^|=!]*$/ и yass будет искать элемент другими средствами, а не getElementById (как ожидается) Вроде решается добавлением '-' в регэксп, т.е. так /^[\w[:#.][\w-\]*^|=!]*$/
  • Sep 19, 2010
    issue 5 (:parent pseudo selector is not supported by .querySelectorAl...) reported by algorithmicimperative   -   I don't know if :parent pseudo selector is a supported feature of yass, but it appears in the code so I thought I'd report it. What steps will reproduce the problem? 1. Test the following simple code in Firefox, Safari, Chrome 2. HTML: <div id='test'></div> 3. yass: _('div:parent') What is the expected output? What do you see instead? Expected output is an empty NodeList. Instead, console shows "SYNTAX_ERR: DOM Exception 12: An invalid or illegal string was specified." What version of the product are you using? On what operating system? version 0.3.9, on Mac OS X Please provide any additional information below. Does not affect IE7, IE8 as querySelectorAll is not utilized. Returns expected result.
    I don't know if :parent pseudo selector is a supported feature of yass, but it appears in the code so I thought I'd report it. What steps will reproduce the problem? 1. Test the following simple code in Firefox, Safari, Chrome 2. HTML: <div id='test'></div> 3. yass: _('div:parent') What is the expected output? What do you see instead? Expected output is an empty NodeList. Instead, console shows "SYNTAX_ERR: DOM Exception 12: An invalid or illegal string was specified." What version of the product are you using? On what operating system? version 0.3.9, on Mac OS X Please provide any additional information below. Does not affect IE7, IE8 as querySelectorAll is not utilized. Returns expected result.
  • Aug 31, 2010
    r181 (Fixed getElementsByClassName support detection (in case of i...) committed by sunny.dreamwind   -   Fixed getElementsByClassName support detection (in case of incorrect 3rd party implementation)
    Fixed getElementsByClassName support detection (in case of incorrect 3rd party implementation)
  • Apr 21, 2010
    issue 4 (bugs in opera 10.51) commented on by magpro   -   проблема в том, что новая опера как-то странно понимает локальные переменные в несжатой версии есть строка 140: tag, id, klass, attr, eql, mod, ind, newNodes, idx, J, child, last, childs, item, h; вот тут есть переменная J - она выше объявлена как локальная далее, ниже видим строку 188: idx = J = 0; то есть переменная обнуляется, но! если сделать сразу после этого алерт, то далеко не всегда там ноль, может быть вообще какое-то большое число но если убрать эту J из локальных, то всё становится хорошо и работает отлично я сделал так - просто заменил J на yassJ и не указывал её в локальных то есть сразу после idx = J = 0; я написал yassJ = 0; и в цикле заменил while (child = nodes[yassJ++]) { всё стало работать хорошо, в других браузерах тоже нет проблем и вообще эта проблема только в новой опере 10.51, тестил в 9.62 - никаких проблем не было сдаётся мне, что это баг чисто оперный
    проблема в том, что новая опера как-то странно понимает локальные переменные в несжатой версии есть строка 140: tag, id, klass, attr, eql, mod, ind, newNodes, idx, J, child, last, childs, item, h; вот тут есть переменная J - она выше объявлена как локальная далее, ниже видим строку 188: idx = J = 0; то есть переменная обнуляется, но! если сделать сразу после этого алерт, то далеко не всегда там ноль, может быть вообще какое-то большое число но если убрать эту J из локальных, то всё становится хорошо и работает отлично я сделал так - просто заменил J на yassJ и не указывал её в локальных то есть сразу после idx = J = 0; я написал yassJ = 0; и в цикле заменил while (child = nodes[yassJ++]) { всё стало работать хорошо, в других браузерах тоже нет проблем и вообще эта проблема только в новой опере 10.51, тестил в 9.62 - никаких проблем не было сдаётся мне, что это баг чисто оперный
  • Mar 28, 2010
    issue 4 (bugs in opera 10.51) reported by bridge2web   -   в opera 10.51 (Windows XP) как то странно работает, где то верно выборка проходит, а где то null возвращает _(".menu a")
    в opera 10.51 (Windows XP) как то странно работает, где то верно выборка проходит, а где то null возвращает _(".menu a")
  • Dec 14, 2009
    r180 (Fixed bug in CSS1 branch about IE / document.all and object ...) committed by sunny.dreamwind   -   Fixed bug in CSS1 branch about IE / document.all and object existence
    Fixed bug in CSS1 branch about IE / document.all and object existence
  • Nov 18, 2009
    issue 3 (Typos in comments) reported by vkhomyackov   -   Typos in yass.0.3.9.js: Line 3: YASS 0.3.8 -> YASS 0.3.9 38: occurence -> occurrence 194: neibours -> neighbours 389: exando -> expando 429: Rrom -> From 532: lask -> lack 678: untill -> until
    Typos in yass.0.3.9.js: Line 3: YASS 0.3.8 -> YASS 0.3.9 38: occurence -> occurrence 194: neibours -> neighbours 389: exando -> expando 429: Rrom -> From 532: lask -> lack 678: untill -> until
  • Nov 08, 2009
    r179 (fixed stupid 'var' inside condition. It's not PHP, just JS.) committed by sunny.dreamwind   -   fixed stupid 'var' inside condition. It's not PHP, just JS.
    fixed stupid 'var' inside condition. It's not PHP, just JS.
  • Nov 08, 2009
    issue 2 (undefined module event) changed by sunny.dreamwind   -   Я так понимаю, предполагается следующее поведение if (var node = _('script[title=' + alias + ']')[0]) { _('head')[0].removeChild(node); } rev.372
    Status: Fixed
    Owner: sunny.dreamwind
    Labels: Component-Logic
    Я так понимаю, предполагается следующее поведение if (var node = _('script[title=' + alias + ']')[0]) { _('head')[0].removeChild(node); } rev.372
    Status: Fixed
    Owner: sunny.dreamwind
    Labels: Component-Logic
  • Nov 08, 2009
    r178 (Refreshed date / number of version) committed by sunny.dreamwind   -   Refreshed date / number of version
    Refreshed date / number of version
  • Nov 08, 2009
    r177 (Fixed issue#2 (undefined module on tree loader) http://code....) committed by sunny.dreamwind   -   Fixed issue#2 (undefined module on tree loader) http://code.google.com/p/yeasss/issues/detail?id=2 thx to agdars
    Fixed issue#2 (undefined module on tree loader) http://code.google.com/p/yeasss/issues/detail?id=2 thx to agdars
  • Nov 08, 2009
    r176 (Light changes in comments, no changes in logic -- it's perfe...) committed by sunny.dreamwind   -   Light changes in comments, no changes in logic -- it's perfect!
    Light changes in comments, no changes in logic -- it's perfect!
  • Oct 07, 2009
    issue 2 (undefined module event) commented on by agdars   -   Может просто проверять предварительно доступность файла модуля и не создавать Нод.
    Может просто проверять предварительно доступность файла модуля и не создавать Нод.
  • Oct 07, 2009
    issue 2 (undefined module event) reported by agdars   -   What steps will reproduce the problem? 1. Если не существует подгружаемый модуль в строке №610 jass(0.3.9 $Rev: 371) developer version _('head')[0].removeChild(_('script[title=' + alias + ']')[0]); должно происходить по замыслу автора удаление инвалида, но оно не происходит. firebug вешается с ошибкой - Node was not found.
    What steps will reproduce the problem? 1. Если не существует подгружаемый модуль в строке №610 jass(0.3.9 $Rev: 371) developer version _('head')[0].removeChild(_('script[title=' + alias + ']')[0]); должно происходить по замыслу автора удаление инвалида, но оно не происходит. firebug вешается с ошибкой - Node was not found.
  • Aug 27, 2009
    issue 1 (:selected is broken) reported by barbuzaster   -   selected: function(elem){ /* Accessing this property makes selected-by-default options in Safari work properly. */ child.parentNode.selectedIndex; return !child.selected; } as you can see, there is no param named child
    selected: function(elem){ /* Accessing this property makes selected-by-default options in Safari work properly. */ child.parentNode.selectedIndex; return !child.selected; } as you can see, there is no param named child
  • Jun 06, 2009
    r175 (Fixing ( => (even)) committed by sunny.dreamwind   -   Fixing ( => (even)
    Fixing ( => (even)
  • Jun 06, 2009
    r174 (Added logging back...) committed by sunny.dreamwind   -   Added logging back...
    Added logging back...
  • Jun 06, 2009
    r173 (Possible fix for WebKit) committed by sunny.dreamwind   -   Possible fix for WebKit
    Possible fix for WebKit
  • Jun 06, 2009
    r172 (Some other log messages -- nth childs are broken in Webkit) committed by sunny.dreamwind   -   Some other log messages -- nth childs are broken in Webkit
    Some other log messages -- nth childs are broken in Webkit
  • Jun 06, 2009
    r171 (Add some logging...) committed by sunny.dreamwind   -   Add some logging...
    Add some logging...
  • Jun 06, 2009
    r170 (Added setTimeout to wait until YASS is loaded) committed by sunny.dreamwind   -   Added setTimeout to wait until YASS is loaded
    Added setTimeout to wait until YASS is loaded
  • Jun 06, 2009
    r169 (Small module to fin unused selectors on the page) committed by sunny.dreamwind   -   Small module to fin unused selectors on the page
    Small module to fin unused selectors on the page
  • May 24, 2009
    r168 (Small fix on 'sets' existence when get element by id / name ...) committed by sunny.dreamwind   -   Small fix on 'sets' existence when get element by id / name for IE (8).
    Small fix on 'sets' existence when get element by id / name for IE (8).
  • May 04, 2009
    r167 (Fixed recognition for arguments selector under Safari -- add...) committed by sunny.dreamwind   -   Fixed recognition for arguments selector under Safari -- added quotes (querySelectorAll only): *=yass. -> *="yass."
    Fixed recognition for arguments selector under Safari -- added quotes (querySelectorAll only): *=yass. -> *="yass."
  • May 04, 2009
    r166 (Fixed $ with _. Added opera to non querySelectedAll list.) committed by sunny.dreamwind   -   Fixed $ with _. Added opera to non querySelectedAll list.
    Fixed $ with _. Added opera to non querySelectedAll list.
  • May 04, 2009
    r165 (Removing some comments after merging.) committed by sunny.dreamwind   -   Removing some comments after merging.
    Removing some comments after merging.
  • May 04, 2009
    r164 (Disable querySelectorAll for IE8.) committed by sunny.dreamwind   -   Disable querySelectorAll for IE8.
    Disable querySelectorAll for IE8.
  • Apr 02, 2009
    r163 (Merge last changes from sunnybear branch) committed by sunny.dreamwind   -   Merge last changes from sunnybear branch
    Merge last changes from sunnybear branch
  • Apr 02, 2009
    r162 (Try to make the last working copy) committed by sunny.dreamwind   -   Try to make the last working copy
    Try to make the last working copy
  • Mar 16, 2009
    r161 (- in modules separation changed to #) committed by sunny.dreamwind   -   - in modules separation changed to #
    - in modules separation changed to #
  • Mar 16, 2009
    r160 (Fix external scripts splitting by hyphen -- now by #. Waitin...) committed by sunny.dreamwind   -   Fix external scripts splitting by hyphen -- now by #. Waiting for the next bug...
    Fix external scripts splitting by hyphen -- now by #. Waiting for the next bug...
  • Mar 16, 2009
    r159 (Branch refreshed -- how to merge in SVN ?!?) committed by sunny.dreamwind   -   Branch refreshed -- how to merge in SVN ?!?
    Branch refreshed -- how to merge in SVN ?!?
  • Mar 16, 2009
    r158 (Fixed dynamic loader (interval has been increased and old sc...) committed by sunny.dreamwind   -   Fixed dynamic loader (interval has been increased and old script is removed after restart) -- to fix problem with multiple scripts loading. Thx to akira
    Fixed dynamic loader (interval has been increased and old script is removed after restart) -- to fix problem with multiple scripts loading. Thx to akira
  • Mar 16, 2009
    r157 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r156 (akira) committed by beshkenadze   -   akira
    akira
  • Mar 16, 2009
    r155 (add files) committed by beshkenadze   -   add files
    add files
  • Mar 16, 2009
    r154 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r153 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r152 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r151 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r150 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r149 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r148 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r147 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r146 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r145 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r144 ([No log message]) committed by beshkenadze   -   [No log message]
    [No log message]
  • Mar 16, 2009
    r143 (Уборка) committed by beshkenadze   -   Уборка
    Уборка
 
Powered by Google Project Hosting