Sha256: dc8eaf9cbe4163ed2b7ca6ba1ccfcdc6b647ab923ec887e6bfba989170e7e247
Contents?: true
Size: 1.62 KB
Versions: 6
Compression:
Stored size: 1.62 KB
Contents
//// /// @group Internal Variables //// /// /// Use development mode to silence fatal errors /// /// @access private /// /// @type Bool /// $flint__development-mode: false !global; /// /// Set global variable to check if foundation has been set /// /// @access private /// /// @type String /// $flint__foundation: "non-existent" !global; /// /// Keep count of all instances /// /// @access private /// /// @type Number /// $flint__instance-count: 0 !global; /// /// Keep map of all instances /// /// @access private /// /// @type Map /// $flint__instances: () !global; /// /// Font size for em calculation /// /// @access private /// /// @type Number /// $flint__base-font-size: 16px !global; /// /// Detect if Ruby functions are available /// /// @access private /// /// @type Bool /// $flint__use-ruby-functions: if(flint-use-ruby-functions() == true, true, false) !global; /// /// Global syntax support /// /// @access private /// /// @type String /// $flint__support-syntax: flint-get-value("settings", "support-syntax") !global; /// /// Gather all keys, breakpoints and column counts /// /// @access private /// /// @type List /// $flint__all-keys: flint-get-all-keys() !global; $flint__all-breakpoints: flint-get-all-breakpoints() !global; $flint__all-columns: flint-get-all-columns() !global; /// /// Cache selector instance lists /// /// @access private /// /// @type Map /// $flint__cached-instances: () !global; /// /// Cache calculated values /// /// @access private /// /// @type Map /// $flint__cached-values: () !global; /// /// Cache calculation results /// /// @access private /// /// @type Map /// $flint__cache-results: () !global;
Version data entries
6 entries across 6 versions & 1 rubygems