Added support for Bliss.$() method

This commit is contained in:
Petteri Hirvonen
2016-02-10 11:36:13 +02:00
parent 1a5b2a729d
commit 0e3eeb998b
2 changed files with 4 additions and 0 deletions

View File

@@ -19,6 +19,8 @@ function test_overview() {
"padding": 0
});
// Bliss.$() method
var my$$ = $.$;
var myArray = $$("div");
/*The ._. sequence of characters that appears all too often when coding with Bliss is where Bliss gets its logo from. However, the property can be

View File

@@ -240,6 +240,8 @@ declare module BlissNS {
add(name: string, callback: Function): void;
run(name: string, env: Object): void;
};
$: BlissStaticCollection;
}
interface BlissStaticCollection extends BlissStatic {