This project contains as many Block/Flat UI widgets as Possible so that anyone can utilise it to any extent. It helps in making simple widgets.
A Pen by Shiv Kumar Ganesh on CodePen.
| #For Visage Compilation/Build/Run | |
| command.compile.*.visage=visagec -d . $(FileNameExt) | |
| command.build.*.visage=visagec -d . *.visage | |
| command.go.*.visage=visage -cp . $(FileName) | |
| # jad = decompiled class files; pde = Processing.org sketch files | |
| file.patterns.visage=*.visage | |
| lexer.$(file.patterns.visage)=cpp | |
| word.characters.$(file.patterns.visage)=$(word.chars.cxx)$- |
| # Define SciTE settings for C++, C, C#, Ch, Java, IDL, JavaScript, Flash (ActionScript 2) files. | |
| # sma files are Small script (C-like) | |
| file.patterns.cpp=*.c;*.cc;*.cpp;*.cxx;*.h;*.hh;*.hpp;*.hxx;*.ipp;*.m;*.mm;*.sma | |
| file.patterns.cplusplus=*.cc;*.cpp;*.cxx | |
| # jad = decompiled class files; pde = Processing.org sketch files | |
| file.patterns.java=*.java;*.jad;*.pde | |
| file.patterns.javafx=*.fx | |
| file.patterns.visage=*.visage | |
| # pln, inc and t are SilkTest (4Test) files. |
| //Please format the code appropriately as required. | |
| postinit{ | |
| //Changes on text property will be reflected in visage text | |
| wrappedTextInputControl.textProperty().addListener( | |
| ChangeListener{ | |
| override function changed( observable:ObservableValue, oldValue:Object , newValue:Object ):Void{ | |
| text = newValue as String; | |
| } | |
| }); |
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express') | |
| , routes = require('./routes') | |
| , user = require('./routes/user') | |
| , http = require('http') | |
| , path = require('path') |
| //First, find the index of the element you want to remove: | |
| var array = [2, 5, 9]; | |
| var index = array.indexOf(5); | |
| //Then remove it with splice: | |
| if (index > -1) { |
| {"lastUpload":"2020-02-21T23:14:39.172Z","extensionVersion":"v3.4.3"} |
This project contains as many Block/Flat UI widgets as Possible so that anyone can utilise it to any extent. It helps in making simple widgets.
A Pen by Shiv Kumar Ganesh on CodePen.
| <link rel="import" href="../core-scaffold/core-scaffold.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-menu/core-menu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-field/core-field.html"> | |
| <link rel="import" href="../core-icon/core-icon.html"> | |
| <link rel="import" href="../core-input/core-input.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> |
| <link rel="import" href="../cool-clock/cool-clock.html"> | |
| <link rel="import" href="../yt-video/yt-search-video.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |