Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Showing
with 2195 additions and 2548 deletions
node_modules
.DS_Store
......@@ -385,7 +385,7 @@ strong: anObject
!
style
^ root addBrush: (StyleTag canvas: self)
^ self tag: 'style'
!
style: aString
......@@ -804,30 +804,6 @@ fromString: aString canvas: aCanvas
yourself
! !
TagBrush subclass: #StyleTag
instanceVariableNames: 'canvas element'
package: 'Canvas'!
!StyleTag commentStamp!
I'm a <style> tag use to inline CSS or load a stylesheet.
For inlining handle IE compatibility problems.!
!StyleTag methodsFor: 'adding'!
with: aString
HTMLCanvas isMSIE
ifTrue: [self element styleSheet cssText: aString ]
ifFalse: [super with: aString ].
! !
!StyleTag class methodsFor: 'instance creation'!
canvas: aCanvas
^self new
initializeFromString: 'style' canvas: aCanvas;
yourself
! !
Object subclass: #Widget
instanceVariableNames: ''
package: 'Canvas'!
......
......@@ -356,7 +356,7 @@ tabs
close
opened ifTrue: [
'#amber' asJQuery hide.
'#amber' asJQuery hide trigger: 'hide'.
ul asJQuery hide.
selectedTab hide.
self removeBodyMargin.
......
This diff is collapsed.
<?php
/**
* Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
*
* BOKEH is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* BOKEH is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with BOKEH; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class Admin_AuthorBrowserController extends ZendAfi_Controller_Action {
public function getPlugins() : array {
return [ZendAfi_Controller_Plugin_ResourceDefinition_Author::class];
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.